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.
Available on PyPi at https://pypi.org/project/twitchirc-drgreengiant/
pip install twitchirc_drgreengiant
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()