A python wrapper over Twitch API to build bots and applications.
Documentation: COMING SOON
from twithon.bot import Bot, Filters
bot = Bot("username", "oauth:token", channels=["channel"])
bot.connect()
@bot.on_message(Filters.command("name"), Filters.admin())
def handler(client, message):
message.reply(message.user)
pip3 install twithon