Below is the file 'test.py' from this revision. You can also download the file.

#!/usr/bin/python

import jabber

conn = jabber.Client(host="jabber.org")
conn.connect()
conn.auth('grahame', 'anduril', 'test')
conn.requestRoster()
conn.sendInitPresence()
msg = jabber.Message("grahame@jabber.org/Gaim", "testing")
msg.setType('chat')
conn.send(msg)
conn.close()