Metadata-Version: 2.1
Name: pybiolib
Version: 1.1.49
Summary: BioLib Python Client
Home-page: https://github.com/biolib
License: MIT
Keywords: biolib
Author: biolib
Author-email: hello@biolib.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: appdirs (>=1.4.3,<2.0.0)
Requires-Dist: cryptography (>=3.1,<36.0.2)
Requires-Dist: docker (>=4.4.1)
Requires-Dist: flask (>=2.0.1)
Requires-Dist: flask-cors (>=3.0.10)
Requires-Dist: gunicorn (>=20.1.0)
Requires-Dist: importlib-metadata (>=1.6.1)
Requires-Dist: pycryptodome (==3.9.9)
Requires-Dist: pyjwt (>=2.3.0)
Requires-Dist: pyyaml (>=5.3.1)
Requires-Dist: requests (>=2.25.1)
Requires-Dist: spython (>=0.1.18)
Requires-Dist: termcolor (>=1.1.0)
Requires-Dist: typing_extensions (==3.10.0); python_version < "3.8"
Requires-Dist: typing_inspect (>=0.5.0,<0.6.0); python_version < "3.8"
Description-Content-Type: text/markdown

# PyBioLib

PyBioLib is a Python package for running BioLib applications from Python scripts and the command line.

### Python Example
```python
# pip3 install -U pybiolib
import biolib
samtools = biolib.load('samtools/samtools')
print(samtools.cli(args='--help'))
```

### Command Line Example
```bash
pip3 install -U pybiolib
biolib run samtools/samtools --help
```


