panzi / python-twitchchat

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Synopsis

A python module aimed to wrap twitch.tvs custom IRC implementation and provide easy event based access to it

Usage

from twitchchat import twitch_chat

def new_message(msg):
    print msg

def new_subscriber(name,months)
    print 'New subscriber {0}! For {1} months'.format(name, months)

tirc = twitch_chat('your twitch username', 'your twitch oauth', ['geekandsundry', 'riotgames'])
tirc.subscribeChatMessage(new_message)
tirc.subscribeNewSubscriber(new_subscriber)
tirc.run()

#Future

  • Expose message sending somehow

About


Languages

Language:Python 100.0%