4 lines
113 B
Python
4 lines
113 B
Python
from sqlalchemy import create_engine
|
|
|
|
|
|
engine = create_engine("postgres+psycopg2:///:localhost:5433", echo=True)
|