def __init__(self): DB.__init__( self, host=environ.get("PGHOST"), dbname=environ.get("PGDBNAME"), user=environ.get("PGUSER"), passwd=environ.get("PGPASS"), )
def __init__(self, host, port): DB.__init__(self, dbname='odin', user='******', host=host, port=port)