author | fabien@tzone.org |
Wed, 31 Dec 2008 15:41:32 -0500 | |
changeset 74 | 6784c4350b41 |
parent 68 | c1f1491f098c |
permissions | -rw-r--r-- |
#!/usr/bin/python if (__name__ == '__main__'): import sys sys.path.insert(0, "./lib") from config import CONFIG CONFIG.db_name = 'database_name' CONFIG.db_user = 'my_user' CONFIG.db_host = 'db.host.com' CONFIG.db_passwd = 'secr3t.passwd' # CONFIG.db_port = 5432 import xbelweb if (__name__ == "__main__"): xbelweb.main()