8 lines
184 B
Python
8 lines
184 B
Python
|
from realog import debug
|
||
|
|
||
|
import psycopg2
|
||
|
|
||
|
debug.info("connect BDD: ")
|
||
|
|
||
|
conn = psycopg2.connect(dbname="karideo", user="postgres", password="postgres", host="localhost", port="43522")
|