Only add unique keywords and remove utils.py, which I'm not sure about
the copyright.
#!/usr/bin/python
class DefaultConfig:
def __init__(self):
self.db_host = 'www.myhost.com'
self.db_user = 'mydbuser'
self.db_passwd = 'mypass'
self.db_name = 'bookmarker3'
self.db_port = 5432
self.template_dir = 'templates'
CONFIG = DefaultConfig()