Metadata-Version: 2.1
Name: sendou-py
Version: 0.2.0
Summary: An async Python library for Sendou.ink
License: MIT
Author: Vincent Lee
Author-email: vlee@vlee.me.uk
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: aiohttp (>=3.9.2,<4.0.0)
Requires-Dist: asyncio (>=3.4.3,<4.0.0)
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
Description-Content-Type: text/markdown

# sendou.py
An async Python client for Sendou.ink

### **This package is a currently a work in progress.**

## Maintainers
- Vincent Lee

## Dependencies
- aiohttp
- python-dateutil

## Installation
`pip install sendou.py`

## Supported Endpoints
- [x] Get user
- [x] Get Tournament Info
- [x] Get Tournament Teams
- [x] Get Tournament Match Info

## Usage
```python
import sendou

client = sendou.Client("API_KEY")
# Get Sendou's user object
await client.get_user("79237403620945920")
```

## Getting an API Key
To use this library, you must have an API key. You need to DM Sendou for an API Key currently.


