Metadata-Version: 2.1
Name: pybiolib
Version: 0.1.275
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.1,<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
Requires-Dist: aenum (>=2.2.3,<3.0.0)
Requires-Dist: appdirs (>=1.4.3,<2.0.0)
Requires-Dist: certifi (>=2019.11.28)
Requires-Dist: nest_asyncio (==1.4.0)
Requires-Dist: ordered_set (>=4.0.1,<5.0.0)
Requires-Dist: pyee (>=7.0.1,<8.0.0)
Requires-Dist: requests (==2.24.0)
Requires-Dist: tqdm (>=4.42.1,<5.0.0)
Requires-Dist: typing_extensions (>=3.7.4,<4.0.0); python_version < "3.8"
Requires-Dist: typing_inspect (>=0.5.0,<0.6.0); python_version < "3.8"
Requires-Dist: websockets (>=8.1,<9.0)
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 pybiolib
from biolib.samtools import samtools
result = samtools()
print(result.stdout)
```

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

