上传文件至「/」

This commit is contained in:
2026-09-19 14:45:34 +08:00
parent 64277ac6a6
commit a667a3a43a
5 changed files with 124 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
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()