Metadata-Version: 2.4
Name: kegger
Version: 0.1.2
Summary: Interact with KEGG API
Author-email: csaltikov <saltikov@ucsc.edu>
License-File: LICENSE
Requires-Python: >=3.13
Requires-Dist: pandas>=2.3.3
Requires-Dist: requests-cache>=1.2.1
Requires-Dist: requests>=2.32.5
Description-Content-Type: text/markdown

# kegger
Light weight python tool for interacting with KEGG API.

Retrieve genes and KEGG pathway for your favorite organisms in the KEGG database

```
org = "eco"
kd = "00190"  # Oxidative phosphorylation - Escherichia coli K-12 MG1655
path_record = get_path(f"{org}{kd}")
path_dict = kegg_parser(path_record)
print(path_dict.get("GENE"))

['b0428', 'b0429', 'b0430', 'b0431', 'b0432', ...]
```
