howroyd / twitchirc

A simple receive only Twitch IRC client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TwitchIRC

CodeQL Vulnerabilities
Linting and Testing
Build and Release

This module connects to the Twitch IRC as a basic listener client. It handles the ping pong and initial connection but otherwise does not send anything to Twitch therefore does not appear in the viewer list nor can it post to chat. As such, no oauth is required, it just works out of the box.

It can join multiple channels at the same time and will report which channel a message was received in.

Installation

Available on PyPi at https://pypi.org/project/twitchirc-drgreengiant/

pip install twitchirc_drgreengiant

Typical Usage

from twitchirc_drgreengiant import twitchirc

channels = frozenset(["drgreengiant", "hpxdreamer"])

with twitchirc.TwitchIrc(channels) as irc:
    while True:
        msg = irc.get_message(irc)

        if not msg:
            continue

        print("Received a message:")
        print(f"{msg.channel=} from {msg.username=}")
        print(f"{msg.payload=}")
        print()

About

A simple receive only Twitch IRC client

License:GNU General Public License v2.0


Languages

Language:Python 100.0%