Metadata-Version: 2.1
Name: pybiolib
Version: 0.2.577
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.6
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: boto3 (==1.16.53)
Requires-Dist: cbor2 (==5.2.0)
Requires-Dist: certifi (>=2019.11.28)
Requires-Dist: cose (==0.9.dev2)
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 (>=4.0.1,<5.0.0)
Requires-Dist: nest_asyncio (==1.4.0)
Requires-Dist: ordered_set (>=4.0.1,<5.0.0)
Requires-Dist: pyOpenSSL (==19.1.0)
Requires-Dist: pycryptodome (==3.9.9)
Requires-Dist: pyee (>=7.0.1,<8.0.0)
Requires-Dist: pyyaml (==5.4.1)
Requires-Dist: requests (==2.24.0)
Requires-Dist: termcolor (==1.1.0)
Requires-Dist: tqdm (>=4.42.1,<5.0.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"
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
import biolib
samtools = biolib.load('samtools/samtools')
print(samtools(args='--help'))
```

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

