20 lines
350 B
Python
20 lines
350 B
Python
import twitchio
|
|
from twitchio.ext import pubsub
|
|
|
|
BOT_NICK = 'Ekouz'
|
|
OAUTH_TOKEN = 'oauth:poc2uc91z5b49kowag0kjbn5zxxto7'
|
|
CHANNEL = 'ekouz'
|
|
|
|
|
|
client = twitchio.Client(token=OAUTH_TOKEN)
|
|
client.pubsub = pubsub.PubSubPool(client)
|
|
|
|
|
|
async def main():
|
|
topics = [
|
|
pubsub.
|
|
|
|
|
|
if __name__ == '__main__':
|
|
client.loop.run_until_complete(main())
|