]> git.datanom.net - pwp.git/blame - app/DB/postgres.py
Half way through migration away from sqlalchemy
[pwp.git] / app / DB / postgres.py
CommitLineData
e5424f29
MR
1import psycopg2
2from base import Base
3
4class Postgres(Base):
5 def __init__(self, database, user, password, host, port):
6 if port is None:
7 port = 5432
8 try:
fc01a3eb 9 self.conn = psycopg2.connect("dbname={0} user={1} password={2} host={3} port={4}".format(database, user, password, host, port))
e5424f29
MR
10 except psycopg2.Error as e:
11 raise Exception(e)
This page took 0.031041 seconds and 6 git commands to generate.