2007-08-21 18:18:38 +02:00
|
|
|
import purk
|
|
|
|
|
|
2007-08-21 23:31:56 +02:00
|
|
|
class Interface(object):
|
|
|
|
|
def __init__(self):
|
2007-08-22 20:56:29 +02:00
|
|
|
client = purk.Client()
|
|
|
|
|
client.show()
|
|
|
|
|
client.join_server('irc.freenode.net')
|
|
|
|
|
self.widget = client.get_widget()
|
|
|
|
|
|
2007-08-21 18:18:38 +02:00
|
|
|
|