PetterKraabol / Twitch-Python

Object-oriented Twitch API for Python developers
https://pypi.org/project/twitch-python
MIT License
214 stars 37 forks source link

Get list of chatters? #31

Closed void4 closed 3 years ago

void4 commented 3 years ago

The Twitch API provides an endpoint for this: https://tmi.twitch.tv/group/user/tcec_chess_tv/chatters

Does the a Chat channel have this information too?

void4 commented 3 years ago

I see, I can use

import twitch

tmi = twitch.tmi.TMI(config["client_id"], config["client_secret"])

print([chatter.name for chatter in tmi.chatters(config["channel"]).all()])

:)