Metadata-Version: 2.4
Name: supertuxkart.py
Version: 0.1.4
Summary: A library that allows interacting with the SuperTuxKart API
Author-email: Vyxie <kitakita@disroot.org>
License-Expression: MIT
Project-URL: Homepage, https://codeberg.org/linaSTK/stk.py
Project-URL: Issues, https://codeberg.org/linaSTK/stk.py/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: aiohttp
Dynamic: license-file

# SuperTuxKart API Wrapper for Python
A library that allows for interacting with teh SuperTuxKart API.

# Example:
```py
>>> import supertuxkart
>>> client = supertuxkart.SuperTuxKartClient(userid=513714, token="<token here>")
>>> # You can also use username/password auth, though
>>> # userid/token is prioritized if both specified
>>> client = supertuxkart.SuperTuxKartClient(username="Sayori", password="password")
>>> session = client.account.saved_session()
>>> session.userid
513714
>>> session.username
'Sayori'
```

# License
This project is licensed under the MIT license.
