Skip to content

Instantly share code, notes, and snippets.

motoma@queuer-1$ python queuer.py
motoma@queuer-n$ python queuer.py
# gnome-desktop-item-edit /usr/share/applications/new-launcher.desktop --create-new
#! /usr/bin/env python
import template
class IRCScript(template.IRCScript):
def privmsg(self, user, channel, msg):
print(' [%s] <%s> %s' % (channel, user, msg))
def action(self, user, channel, data):
print(' [%s] * %s %s' % (channel, user, data))
def userJoined(self, user, channel):