11 lines
206 B
Python
11 lines
206 B
Python
import purk
|
|
|
|
class Interface(object):
|
|
def __init__(self):
|
|
client = purk.Client()
|
|
client.show()
|
|
client.join_server('irc.freenode.net')
|
|
self.widget = client.get_widget()
|
|
|
|
|