Async Python client for the Chaturbate Events API.
Project description
CB Events
Async Python client for the Chaturbate Events API.
Requirements
Python 3.10+
Installation
pip install cb-events
With uv (recommended):
uv add cb-events
Quick Start
import asyncio
from cb_events import EventClient, Router, EventType, Event
router = Router()
username = "your_username"
token = "your_api_token"
@router.on(EventType.TIP)
async def handle_tip(event: Event) -> None:
if event.user and event.tip:
print(f"{event.user.username} tipped {event.tip.tokens} tokens")
async def main():
async with EventClient(username, token) as client:
async for event in client:
await router.dispatch(event)
asyncio.run(main())
mountaingod2 tipped 100 tokens
For usage examples, see the examples folder.
Generate an API token at https://chaturbate.com/statsapi/authtoken/ with
Events APIscope.
Working with Events
Event Types
TIP · FANCLUB_JOIN · MEDIA_PURCHASE · CHAT_MESSAGE · PRIVATE_MESSAGE · USER_ENTER · USER_LEAVE · FOLLOW · UNFOLLOW · BROADCAST_START · BROADCAST_STOP · ROOM_SUBJECT_CHANGE
Event Object
event.user # User object (most events)
event.tip # Tip object (TIP only)
event.message # Message object (CHAT_MESSAGE, PRIVATE_MESSAGE)
event.media # Media object (MEDIA_PURCHASE)
event.room_subject # RoomSubject object (ROOM_SUBJECT_CHANGE)
event.broadcaster # Broadcaster username string or None
See full docs for additional details.
Configuration
from cb_events import ClientConfig
config = ClientConfig(
timeout=10, # Server long-poll timeout (seconds)
use_testbed=False, # Use testbed endpoint (https://www.testbed.cb.dev)
strict_validation=False, # False skips & logs invalid events; True raises.
retry_attempts=8, # Total attempts (initial + retries)
retry_backoff=1.0, # Initial backoff (seconds)
retry_factor=2.0, # Backoff multiplier
retry_max_delay=30.0, # Max retry delay (seconds)
)
client = EventClient(username, token, config=config)
Testbed: Register at https://www.testbed.cb.dev. New accounts include preloaded tokens for testing. Generate an API token the same way as a live account, then pass
use_testbed=Truewith those credentials.
Rate Limiting
Default: 2000 req/60s per client. Multiple clients each get an independent budget unless a shared limiter is passed:
from aiolimiter import AsyncLimiter
limiter = AsyncLimiter(max_rate=2000, time_period=60)
client1 = EventClient(username1, token1, rate_limiter=limiter)
client2 = EventClient(username2, token2, rate_limiter=limiter)
Error Handling
AuthError is a subclass of EventsError — except EventsError catches both. Put AuthError first if you need to distinguish them.
import logging
import sys
from cb_events import AuthError, EventsError
logger = logging.getLogger(__name__)
try:
async with EventClient(username, token) as client:
async for event in client:
await router.dispatch(event)
except AuthError:
# Authentication failed (401/403) — never retried
logger.error("Invalid credentials — check username and token")
sys.exit(1)
except EventsError as e:
# All other API/network errors — check e.status_code, e.response_text
logger.error("API error %s: %s", e.status_code, e.response_text)
raise
Retries: 429, 5xx, Cloudflare 521-524. Not retriable: 401/403.
Handlers: Sequential execution. Errors logged but don't stop processing.
Logging
Set the logger to DEBUG for verbose polling data:
import logging
logging.getLogger("cb_events").setLevel(logging.DEBUG)
Example output:
DEBUG:cb_events.client:Polling https://eventsapi.chaturbate.com/events/user/************************/?timeout=10
DEBUG:cb_events.client:Received 1 events for user
DEBUG:cb_events.router:Dispatching chatMessage event 1775683684418-0 to 2 handlers
Star History
License
MIT
Not affiliated with Chaturbate.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cb_events-8.0.10.tar.gz.
File metadata
- Download URL: cb_events-8.0.10.tar.gz
- Upload date:
- Size: 223.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e97bf0c7a8417a23cc14367e40fe5b2894414a93567707aa442305754d0b9efd
|
|
| MD5 |
a7a2dcb942d110f9745900c5ef7bb61b
|
|
| BLAKE2b-256 |
99e66c534daabeff72de99f6ff52a43512563a9453c571d889cc00acca7f355d
|
Provenance
The following attestation bundles were made for cb_events-8.0.10.tar.gz:
Publisher:
ci-cd.yml on MountainGod2/cb-events
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cb_events-8.0.10.tar.gz -
Subject digest:
e97bf0c7a8417a23cc14367e40fe5b2894414a93567707aa442305754d0b9efd - Sigstore transparency entry: 1498238757
- Sigstore integration time:
-
Permalink:
MountainGod2/cb-events@8556b42861ff665f253a47ede87490562d40d1a9 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/MountainGod2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@8556b42861ff665f253a47ede87490562d40d1a9 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cb_events-8.0.10-py3-none-any.whl.
File metadata
- Download URL: cb_events-8.0.10-py3-none-any.whl
- Upload date:
- Size: 23.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da19cbdb25099192e9c7586ccf60320ea52408c14c41f73f1cb09529ca714714
|
|
| MD5 |
cb3a32bfb621fae97238c12d7db3b868
|
|
| BLAKE2b-256 |
7923e084d22e0bbde683fe7d6c934349df5f767cf39f88e1370339fa506b3460
|
Provenance
The following attestation bundles were made for cb_events-8.0.10-py3-none-any.whl:
Publisher:
ci-cd.yml on MountainGod2/cb-events
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cb_events-8.0.10-py3-none-any.whl -
Subject digest:
da19cbdb25099192e9c7586ccf60320ea52408c14c41f73f1cb09529ca714714 - Sigstore transparency entry: 1498239051
- Sigstore integration time:
-
Permalink:
MountainGod2/cb-events@8556b42861ff665f253a47ede87490562d40d1a9 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/MountainGod2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@8556b42861ff665f253a47ede87490562d40d1a9 -
Trigger Event:
push
-
Statement type: