Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Main.py
blob: 5dafb95769dc2576224f06a8a118a4ae7ed521a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/env python
import  pygtk
pygtk.require('2.0')
import sys,gtk,gobject,random,socket,select
import threading
import math
import pango
from gtk import gdk

from Oficina import Oficina

def main():
	"""Run the program.
	"""
	oficina = Oficina()
	gtk.main()	

if __name__ == "__main__":
	main()