Metadata-Version: 2.1
Name: sendou-py
Version: 1.0.0
Summary: An async Python library for Sendou.ink
Home-page: https://github.com/IPLSplatoon/sendou.py/
License: MIT
Keywords: splatoon,sendou.ink
Author: Vincent Lee
Author-email: vlee@vlee.me.uk
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 3 - Alpha
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
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: aiohttp-client-cache (>=0.11.0,<0.12.0)
Requires-Dist: asyncio (>=3.4.3,<4.0.0)
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
Project-URL: Repository, https://github.com/IPLSplatoon/sendou.py/
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 Brackets
- [x] Get Tournament Match Info (*by ID not linked to bracket*)

## Usage
```python
import sendou
import asyncio

async def run():
    client = sendou.Client("API_KEY")
    player = await client.get_user("USER_ID")
    print(player.name)

asyncio.run(run())
```

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


