Metadata-Version: 2.1
Name: igem
Version: 2.1.0
Summary: IGEM — bioinformatics analysis client (GWAS/EWAS, knowledge-graph queries, transport-agnostic)
Home-page: https://github.com/andrerico/IGEM
License: MIT
Author: Andre
Author-email: andre.rico@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Dist: bed-reader (>=1.0.0,<2.0.0)
Requires-Dist: bio2zarr[vcf] (>=0.1.0,<0.1.8)
Requires-Dist: click (>=8.1.0,<9.0.0)
Requires-Dist: httpx (>=0.27.0,<0.28.0)
Requires-Dist: pandas (>=2.2.0,<3.0.0)
Requires-Dist: pydantic (>=2.7.0,<3.0.0)
Requires-Dist: sgkit (>=0.10.0,<0.11.0)
Requires-Dist: statsmodels (>=0.14.0,<0.15.0)
Requires-Dist: tqdm (>=4.66.0,<5.0.0)
Project-URL: Repository, https://github.com/andrerico/IGEM
Description-Content-Type: text/markdown

# igem

Python client for the IGEM API.

## Install

```bash
pip install igem
```

## Usage

```python
from igem import IgemClient

with IgemClient(base_url="http://localhost:8000") as client:
    print(client.health())
```

