pinhook/examples/twitch/dicebot.py

11 lines
174 B
Python
Raw Normal View History

2018-10-10 17:23:31 +00:00
#!/usr/bin/env python
2018-02-07 18:33:30 +00:00
from pinhook.bot import TwitchBot
2018-02-07 00:30:54 +00:00
2018-02-07 18:33:30 +00:00
bot = TwitchBot(
nickname='dicebot',
channel='#dicechannel',
token='supersecrettokenhere'
)
2018-10-10 17:23:31 +00:00
bot.start()