Skip to main content

Poller for the Chaturbate events API.

Project description

Chaturbate Poller

Read the Docs Codecov Coverage CodeFactor Grade Workflow Status License Python Version Version

Chaturbate Poller is a Python library and CLI for polling events from the Chaturbate API. It provides asynchronous event handling, logging, and optional integration with InfluxDB to store event data for analysis.

Features

  • Event Polling: Efficiently poll events from Chaturbate’s API.
  • Error Handling: Includes backoff and retry mechanisms.
  • Logging: Console and JSON file logging for structured insights.
  • Optional InfluxDB Storage: Store events in InfluxDB for analysis or monitoring.

Installation

Ensure Python 3.11 or later is installed, then install via pip:

pip install chaturbate-poller

Configuration

Create a .env file in your project’s root directory for API and InfluxDB credentials:

CB_USERNAME="your_chaturbate_username"
CB_TOKEN="your_chaturbate_token"
INFLUXDB_URL="http://influxdb:8086"
INFLUXDB_TOKEN="your_influxdb_token"
INFLUXDB_ORG="chaturbate-poller"
INFLUXDB_BUCKET="your_bucket"
USE_DATABASE="false"  # Set to `true` if InfluxDB is used

[!NOTE] Generate an API token here with the "Events API" permission enabled.

Usage

CLI

Start the poller from the command line:

python -m chaturbate_poller start --username <your_username> --token <your_token>

For additional options:

python -m chaturbate_poller --help

Docker

Run Chaturbate Poller in Docker:

docker pull ghcr.io/mountaingod2/chaturbate_poller:latest
docker run \
  -e CB_USERNAME="your_chaturbate_username" \
  -e CB_TOKEN="your_chaturbate_token" \
  ghcr.io/mountaingod2/chaturbate_poller:latest --verbose --testbed

Library Usage

To use Chaturbate Poller as a library, here's a sample script to fetch events in a loop:

import asyncio
from chaturbate_poller import ChaturbateClient

async def main():
    async with ChaturbateClient("your_username", "your_token") as client:
        url = None
        while True:
            response = await client.fetch_events(url)
            for event in response.events:
                print(event.dict())  # Process each event

            url = response.next_url

if __name__ == "__main__":
    asyncio.run(main())

Development

  1. Clone the repository:

    git clone https://github.com/MountainGod2/chaturbate_poller.git
    cd chaturbate_poller
    
  2. Set up the environment and dependencies using uv:

    uv venv .venv
    uv pip install -e .
    

Contributing

Contributions are welcome! To contribute:

  1. Fork the repository.
  2. Create a feature branch.
  3. Submit a pull request, ensuring tests and coding standards are met.

License

This project is licensed under the MIT License. See the LICENSE file for more details.

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

chaturbate_poller-0.17.0.tar.gz (140.2 kB view details)

Uploaded Source

Built Distribution

chaturbate_poller-0.17.0-py3-none-any.whl (21.2 kB view details)

Uploaded Python 3

File details

Details for the file chaturbate_poller-0.17.0.tar.gz.

File metadata

  • Download URL: chaturbate_poller-0.17.0.tar.gz
  • Upload date:
  • Size: 140.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for chaturbate_poller-0.17.0.tar.gz
Algorithm Hash digest
SHA256 55ca2016d12be23068a76f6099654d1dcdde4a4f9bfe0f8e6c931d7e72ef0934
MD5 74836934cad916597f8e14a7f85480a2
BLAKE2b-256 f18526dce3851c203ca7a25b6195ff347adc6f6126683bdba4f5100a6d3dd5e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for chaturbate_poller-0.17.0.tar.gz:

Publisher: cd.yml on MountainGod2/chaturbate_poller

Attestations:

File details

Details for the file chaturbate_poller-0.17.0-py3-none-any.whl.

File metadata

File hashes

Hashes for chaturbate_poller-0.17.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fe76cfcab2c501dbccf02ce4aad30ce2abed4f46ac0d793e28b2c6f4c92a4a39
MD5 8313a96b270f09784528a0f90cb7d95b
BLAKE2b-256 9d5e7f3e6788126049e2f89e319c0ef073b621724a893a7cb17913f5b164a903

See more details on using hashes here.

Provenance

The following attestation bundles were made for chaturbate_poller-0.17.0-py3-none-any.whl:

Publisher: cd.yml on MountainGod2/chaturbate_poller

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page