5 lines
160 B
Python
5 lines
160 B
Python
from peewee import *
|
|
|
|
# 连接到 SQLite 数据库,如果文件不存在会自动创建
|
|
db = SqliteDatabase(r'C:\Users\27942\Desktop\job\models\database.db')
|