Metadata-Version: 2.1
Name: enviPath-python
Version: 0.1.0
Summary: A python client to interact with enviPath
Author-email: Tim Lorsbach <lorsbach@envipath.com>, Jasmin Hafner <jasmin.hafner@eawag.ch>, Albert Anguera Sempere <albert.anguerasempere@uzh.ch>
Project-URL: Homepage, https://github.com/enviPath/enviPath-python
Project-URL: Bug Tracker, https://github.com/enviPath/enviPath-python/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# enviPath Python

## Quickstart

```python
from pprint import pprint
from enviPath_python import enviPath

eP = enviPath('https://envipath.org')

bbd = eP.get_package('https://envipath.org/package/32de3cf4-e3e6-4168-956e-32fa5ddb0ce1')

bbd_pws = bbd.get_pathways()

pprint(bbd_pws[0].get_description())
```

## Advanced

```python
from enviPath_python import enviPath
from enviPath_python.utils import NonPersistent

eP = enviPath('https://envipath.org')
np = NonPersistent(eP)

setting = eP.who_am_i().get_default_setting()

predictions = np.predict(eP.who_am_i().get_default_setting(), 'c1ccccc1')
```

