Python

PHOTO EMBED

Fri Mar 29 2024 04:31:15 GMT+0000 (Coordinated Universal Time)

Saved by @nisarg #python #alchemy

from sqlalchemy import create_engine
engine = create_engine("sqlite+pysqlite:///:memory:", echo=True)

connection = engine.connect()
print("Connected to the database successfully")
connection.close()
content_copyCOPY

https://docs.sqlalchemy.org/en/20/tutorial/engine.html