大作业-修改了主页

This commit is contained in:
2024-06-12 00:02:55 +08:00
parent b59880f301
commit e48e752b91
20 changed files with 415 additions and 190 deletions

7
Project/func/get_db.py Normal file
View File

@@ -0,0 +1,7 @@
import pymysql
def get_db():
return pymysql.connect(
host='localhost', user='kejingfan',
password='KJF2811879', database='TESTDB'
)