Metadata-Version: 2.4
Name: pybiolib
Version: 1.2.1293
Summary: BioLib Python Client
License: MIT
License-File: LICENSE
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
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Provides-Extra: compute-node
Requires-Dist: appdirs (>=1.4.3)
Requires-Dist: click (>=8.0.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: rich (>=12.4.4)
Requires-Dist: typing-extensions (>=4.1.0) ; python_version < "3.11"
Project-URL: Homepage, https://github.com/biolib
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
```

