Twisted is an event-driven networking engine written in Python, and includes support for IRC protocols. To access IRC functionality, import it:
from twisted.words.protocols import irc
See an example here: ircLogBot.py - connects to an IRC server and logs all messages. The example __doc__:
"""An example IRC log bot - logs a channel's events to a file.
If someone says the bot's name in the channel followed by a ':',
e.g.
<foo> logbot: hello!
the bot will reply:
<logbot> foo: I am a log bot
Run this script with two arguments, the channel name the bot should
connect to, and file to log to, e.g.:
$ python ircLogBot.py test test.log
will log channel #test to the file 'test.log'.
"""