Metadata-Version: 2.4
Name: kegger
Version: 0.1.5
Summary: Interact with KEGG API
Project-URL: Homepage, https://github.com/csaltikov/kegger
Project-URL: Repository, https://github.com/csaltikov/kegger
Project-URL: Issues, https://github.com/csaltikov/kegger/issues
Author-email: csaltikov <saltikov@ucsc.edu>
License-File: LICENSE
Keywords: KEGG,api-wrapper,bioinformatics,genomics,metabolism,microbiology,pandas
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
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', ...]
```
