Skip to main content

A unified API wrapper for YouTube and Twitch chat bots.

Project description

Chatto

A unified API wrapper for YouTube and Twitch chat bots.

CPython versions 3.7 through 3.10 and PyPy versions 3.7 and 3.8 are officially supported.

Windows, MacOS, and Linux are all supported.

Installation

To install the latest stable version of Chatto:

pip install chatto

# If you need types:
pip install "chatto[types]"

To install the latest development version:

pip install git+https://github.com/parafoxia/chatto

You may need to prefix these commands with a call to the Python interpreter depending on your OS and Python configuration.

Setup

Before you begin, you will need to have a Google Developers project with the YouTube Data API V3 enabled. You need an API key, and if you want to send and delete messages, you will need an OAuth Client ID.

Although this project is currently undocumented, one of my other projects has a guide. Just make sure to select the Data API and not the Analytics API as mentioned in that guide.

Creating a YouTube bot

To create a simple YouTube bot, you could do something like this:

import os

from chatto import YouTubeBot
from chatto.events import MessageCreatedEvent


async def message_callback(event: MessageCreatedEvent) -> None:
    if event.message.content.startswith("!hello"):
        await bot.send_message(f"Hi {event.message.channel.name}!")


if __name__ == "__main__":
    bot = YouTubeBot(
        os.environ["API_KEY"],
        os.environ["CHANNEL_ID"],
    )
    bot.use_secrets("secrets.json")
    bot.events.subscribe(MessageCreatedEvent, message_callback)

    # This is blocking, so should be the last thing you call.
    bot.run()

Chatto relies on the /search endpoint to find a live broadcast from a channel, which is not 100% reliable. If you are having major issues getting Chatto to find your channel's live stream, you can pass the stream ID directly:

bot.run(with_stream_id=os.environ["STREAM_ID"])

If you don't want to use OAuth, you can launch Chatto in read-only mode. Note that your bot will not be able to send or delete messages in this mode:

bot.run(read_only=True)

Creating a Twitch bot

Twitch bots are not yet supported.

Contributing

Contributions are very much welcome! To get started:

License

The Chatto module for Python is licensed under the BSD 3-Clause License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chatto-0.1.0.tar.gz (14.1 kB view hashes)

Uploaded Source

Built Distribution

chatto-0.1.0-py3-none-any.whl (22.1 kB view hashes)

Uploaded Python 3

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