Archive for the ‘solutions’ Category

irc Looks complex to begin with but ended up being effective enough to not consider other libraries. Connecting is as simple as the following: import irc.client client = irc.client.IRC() server = client.server() server.connect(‘localhost’, 6667, ‘test’) Then because it’s event driven you call: client.process_once() in your event loop to keep communication flowing. Whenever you wish to […]