Metadata-Version: 2.1
Name: mlaide
Version: 0.1.0a0
Summary: 
Home-page: https://github.com/MLAide/python-client
License: Apache-2.0
Author: Raman Singh
Author-email: mail.raman.s@gmail.com
Requires-Python: >=3.7,<4
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: cloudpickle (>=1.6.0,<2.0.0)
Requires-Dist: dataclasses-json (>=0.5.2,<0.6.0)
Requires-Dist: httpx (>=0.16.1,<0.17.0)
Requires-Dist: marshmallow (>=3.10.0,<4.0.0)
Requires-Dist: python-dateutil (>=2.8.1,<3.0.0)
Project-URL: Repository, https://github.com/MLAide/python-client
Description-Content-Type: text/markdown

# Python Client Library for ML Aide

## Run example scripts
In `examples/` you can find some python scripts as an example.
The shell scripts can be used for easier usage.

Run the following commands once in a terminal session
```shell script
cs/
source ./set_api_key.sh
```

After that you can use the following command to run the scripts
over and over again:
```shell script
./run_example.sh
```

## Contribution
### Prerequisites
1. Install [Python](https://www.python.org/)
2. Install [pipenv](https://github.com/pypa/pipenv)
3. Optional - Install IDE: [PyCharm](https://www.jetbrains.com/pycharm/) 
or [Visual Studio Code](https://code.visualstudio.com/)

### Setup Environment
1. Install environment and download dependencies
    ```
   PIPENV_IGNORE_VIRTUALENVS=1
   pipenv install --dev
   ```
   
2. Activate environment
    ```shell script
    pipenv shell
    ```

### Run Tests
```
pytest
```

### Run Tests with Coverage
```
coverage run --branch --source mlaide -m pytest
coverage html
```

### Build
```
python setup.py bdist_wheel
```

### Install
To install the package in the local environment in editable mode 
use the following command:
```
pipenv install -e .
```
