Metadata-Version: 2.1
Name: elki-interface
Version: 0.0.1
Summary: Very basic interface to call elki from python
Home-page: https://github.com/eliavw
Author: Elia vw
Author-email: elia.vw@gmail.com
License: mit
Project-URL: Documentation, https://github.com/eliavw
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: pandas
Provides-Extra: testing
Requires-Dist: pytest ; extra == 'testing'

# elki_interface
An example of how one could realize a python interface for the ELKI datamining tool.

This is not a wrapper, just a CLI with a few python-esque bells and whistles.

At most, it is an example of how one could go about building a clean python interface from python to the ELKI CLI. Currently this project only exposes the HiCS method for outlier detection.

## Cite

**I am in no way affiliated with the developers of the ELKI tool. All credit goes to them.**

Cf. [https://elki-project.github.io/](https://elki-project.github.io/) for the official ELKI website. Should you use this tool, please follow the instructions on the ELKI website of how and what to cite!

## Usage

For a local install, `cd` to the root of this repository and simply; 

```
python setup.py develop
```


