5 lines
159 B
Python
5 lines
159 B
Python
from peewee import *
|
|
|
|
# 连接到 SQLite 数据库,如果文件不存在会自动创建
|
|
db = SqliteDatabase(r'E:\新建文件夹\lm_job\models\database.db')
|