1
This repository has been archived on 2021-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
twitter_zuil/customer_input.py

20 lines
282 B
Python

import psycopg2
pghost = 'localhost'
pgdatabase = 'test'
pguser = 'test'
pgpassword = 'testing'
class customer_input():
def __init__(self):
conn = psycopg2.connect(
host=pghost,
database=pgdatabase,
user=pguser,
password=pgpassword
)
cur = self.conn.cursor()