上传文件至「/」

This commit is contained in:
2026-09-19 14:45:22 +08:00
parent 5089f7cb18
commit 548ceda753
5 changed files with 81 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
from sqlalchemy import *
from sqlalchemy.orm import declarative_base, sessionmaker
db_url = "mysql+pymysql://root:123456@127.0.0.1:3306/ai0824?charset=utf8mb4"
engine = create_engine(db_url)
Base = declarative_base()
Session = sessionmaker(bind=engine
, autoflush=False
, autocommit=False
)
def get_db():
db = Session()
try:
yield db
finally:
db.close()