Metadata-Version: 2.1
Name: stringx
Version: 0.2.0
Summary: STRING API client
Author-Email: Hugo Cachitas <hcachitas@gmail.com>
License: MIT
Project-URL: Homepage, https://pypi.org/project/stringx
Project-URL: Repository, https://github.com/cachitas/stringx
Requires-Python: >=3.9
Requires-Dist: httpx>=0.27.0
Description-Content-Type: text/markdown

# STRINGX

STRINGX is a [STRING](string-db.org) API client using [HTTPX](https://www.python-httpx.org)

## Install

```sh
pip install stringx
```

## Usage

```python
import stringx

with stringx.Client() as client:
    identifiers = client.map_identifiers(["edin", "atta"], species=7227)

```
