feat(utils/PostgressConnect.py): Postgress connect Functional

Added Functions with connect to postgress db by link from enviroment
This commit is contained in:
Kirill
2025-10-23 23:00:00 +03:00
parent a062d24b24
commit 35f18853fc
+10
View File
@@ -0,0 +1,10 @@
import psycopg
import os
def PSQLConnect():
conn = psycopg.connect(os.getenv('POSTDRESS_CONNECTION'))
return conn
def PSQLCursor(conn):
cur = conn.cursor()
return cur