kickcom.py
Modern async Python wrapper for the Kick.com API. OAuth 2.1 PKCE, typed models, webhook server with signature verification, and full coverage of chat, channels, livestreams, moderation, and rewards.
Features
- Full coverage of the Kick Public API (users, channels, livestreams, categories, chat, moderation, rewards, KICKs, ads, events)
- OAuth 2.1 + PKCE authentication with built-in browser flow and automatic token refresh
- Webhook server with cryptographic signature verification for real-time events
- Fully typed dataclass models for all API responses and webhook payloads
- Optional speed extras (
orjson,aiodns,Brotli) for faster serialization and networking - Async/await powered by aiohttp
Installation
pip install kickcom.py
Optional speed extras:
pip install kickcom.py[speed]
Quick Start
import asyncio
from kickpy import KickClient
async def main():
client = KickClient("CLIENT_ID", "CLIENT_SECRET")
user = await client.fetch_user(4377088)
print(user.name)
channel = await client.fetch_channel(slug="kickbot")
print(channel.stream_title)
await client.close()
asyncio.run(main())
Documentation
For full guides and API reference, visit the documentation.
- Getting Started - Install and make your first API call
- Authentication - App tokens, user tokens, and OAuth flow
- API Reference - All client methods, models, enums, and errors
- Webhooks - Set up a webhook server and handle real-time events
Release files for kickcom.py 1.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| kickcom_py-1.1.0.tar.gz | 30.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| kickcom_py-1.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 62.7 kB
Release files / kickcom_py-1.1.0.tar.gz
| Download URL | kickcom_py-1.1.0.tar.gz |
|---|---|
| Size | 30.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2edf358cd312268e4a6192252aaa2a2dad27e039093ed1efdf21ccc53f78227a
|
|
BLAKE2b-256 checksum How to use checksums |
3c7069613f12904b4ac83b190ec4a237ed2d0aada402968ce97651e617d444de
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
python-requests/2.32.4
|
Release files / kickcom_py-1.1.0-py3-none-any.whl
| Download URL | kickcom_py-1.1.0-py3-none-any.whl |
|---|---|
| Size | 31.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
cae68f2a4827b6f63dd2da28531527692b131fc4d499ef7734b5aeb20fb90ee5
|
|
BLAKE2b-256 checksum How to use checksums |
2cbb8d89a1cc3a019909de232d869a767bb53daaa355215e681b648f44ff895b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
python-requests/2.32.4
|