Metadata-Version: 2.1
Name: pybiolib
Version: 1.1.1212
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.3,<4.0.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Provides-Extra: compute-node
Requires-Dist: appdirs (>=1.4.3)
Requires-Dist: click (>=8.0.0,<8.1.0)
Requires-Dist: docker (>=5.0.3)
Requires-Dist: flask (>=2.0.1) ; extra == "compute-node"
Requires-Dist: gunicorn (>=20.1.0) ; extra == "compute-node"
Requires-Dist: importlib-metadata (>=1.6.1)
Requires-Dist: pyyaml (>=5.3.1)
Requires-Dist: requests (>=2.25.1,<2.30.0)
Requires-Dist: rich (>=12.4.4,<13.0.0)
Requires-Dist: typing_extensions (>=3.10.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
```

