Files
lm_code/models/__init__.py

5 lines
159 B
Python
Raw Normal View History

2025-10-13 10:20:23 +08:00
from peewee import *
# 连接到 SQLite 数据库,如果文件不存在会自动创建
2025-11-03 17:38:42 +08:00
db = SqliteDatabase(r'E:\新建文件夹\lm_job\models\database.db')