Here is a simple Python command-line program which will connect to a Twitch channel as a bot and respond to a few simple commands.
Dependencies:
irc Python lib (pip install irc or easy_install irc)
Source: https://gist.github.com/jessewebb/65b554b5be784dd7c8d1
import logging
import sys
f...