5 lines
125 B
Python
5 lines
125 B
Python
from peewee import *
|
|
|
|
# 连接到 SQLite 数据库,如果文件不存在会自动创建
|
|
db = SqliteDatabase('database.db')
|