https://github.com/tibue99/cookie-api
Official wrapper for the Cookie API
https://github.com/tibue99/cookie-api
api bot cookie discord
Last synced: 5 months ago
JSON representation
Official wrapper for the Cookie API
- Host: GitHub
- URL: https://github.com/tibue99/cookie-api
- Owner: tibue99
- License: mit
- Created: 2024-05-13T17:17:10.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-05T11:30:30.000Z (12 months ago)
- Last Synced: 2025-04-05T11:31:56.172Z (12 months ago)
- Topics: api, bot, cookie, discord
- Language: Python
- Homepage: https://cookie-api.readthedocs.io/
- Size: 68.4 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cookie API
[](https://pypi.org/project/cookie-api/)
[](https://github.com/tibue99/cookie-api/blob/main/LICENSE)
[](https://cookie-api.readthedocs.io/)
[](https://cookieapp.me/)
Official wrapper for the [Cookie](https://cookieapp.me) API.
## ⚙️ Installation
Python 3.9 or higher is required
```
pip install cookie-api
```
## 🔑 How to get an API key?
1. Invite [Cookie](https://cookieapp.me) to your Discord server or to your Discord account
2. Run `/premium api`
## 🚀 Example Usage
The API key can be passed as a parameter or set as the environment variable `COOKIE_KEY`.
For more information, see to our [documentation](https://cookie-api.readthedocs.io/).
### Sync Example
```python
from cookie import CookieAPI
api = CookieAPI(api_key="[YOUR_API_KEY]")
user_stats = api.get_user_stats(123456789) # Replace with user ID
```
### Async Example
```python
import asyncio
from cookie import AsyncCookieAPI
api = AsyncCookieAPI(api_key="[YOUR_API_KEY]")
async def main():
user_stats = await api.get_user_stats(123456789) # Replace with user ID
await api.close()
asyncio.run(main())
```
You can also use an asynchronous context manager (recommended)
```python
async def main():
async with api as con:
user_stats = await con.get_user_stats(123456789) # Replace with user ID
```
## ⚡ OpenAPI Docs
If you want to use the API without this wrapper, you can find the OpenAPI docs [here](https://api.cookieapp.me/docs).
The models in this package are automatically generated using the OpenAPI spec:
```
python cookie/_internal/model_generator.py
```