2 # Author: Daniel Garcia <dani@danigm.net>
5 from sqlobject import *
8 class Tracker(SQLObject):
16 connection_string = 'sqlite://%s/devdata.sqlite' % os.getcwd()
17 connection = connectionForURI(connection_string)
18 sqlhub.processConnection = connection
23 # You need to create the database before.
28 if __name__ == '__main__':