Metadata-Version: 2.1
Name: e6py
Version: 0.1.2
Summary: An e621 API wrapper
License: MIT
Author: zevaryx
Author-email: zevaryx@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: attrs (>=22.1.0,<23.0.0)
Requires-Dist: requests (>=2.28.1,<3.0.0)
Requires-Dist: sentinel (>=1.0.0,<2.0.0)
Description-Content-Type: text/markdown

# e6py

`e6py` is an API wrapper for e621/e926

## Requirements

- Python 3.10
- requests >= 2.26.0
- attrs >= 21.2.0

## Usage

```py
from e6py import E621Client

client = E621Client(login="username", api_key="API Key")
posts = client.get_posts()

for post in posts:
    print(f"Got post {post.id}")
    print(f"  Rating: {post.rating}")
    print(f"   Score: {post.score}")
    print(f"     URL: {post.file.url}")
```

