5 lines
117 B
Python
5 lines
117 B
Python
|
|
from sqlalchemy import create_engine
|
||
|
|
|
||
|
|
engine = create_engine(
|
||
|
|
"mysql+pymysql://root:1234@localhost:3306/thesis"
|
||
|
|
)
|