ec985a808d
https://g.codrs.ru/Hackaton/Backend/pulls/2#issuecomment-23 https://g.codrs.ru/Hackaton/Backend/pulls/2#issuecomment-31
11 lines
187 B
Python
11 lines
187 B
Python
import psycopg2
|
|
import os
|
|
|
|
def PSQLConnect():
|
|
conn = psycopg2.connect(os.getenv('POSTDRESS_CONNECTION'))
|
|
return conn
|
|
|
|
def PSQLCursor(conn):
|
|
cur = conn.cursor()
|
|
return cur
|