thesis-scripts/db/engine.py

5 lines
117 B
Python
Raw Normal View History

2026-06-14 19:38:09 +00:00
from sqlalchemy import create_engine
engine = create_engine(
"mysql+pymysql://root:1234@localhost:3306/thesis"
)