在Bottle框架中集成Peewee ORM的最佳实践
Bottle Peewee 提供了将 Peewee ORM 集成到 Bottle 框架的便捷方式。内容要求Python版本需大于2.6。安装 Bottle Peewee
可以通过以下命令完成:
pip install bottle-peewee
用法示例
以下是一个简单的集成示例:
from bottle import Bottle
from bottle_peewee import PeeweePlugin
from peewee import Model, CharField
# 初始化Bottle应用
app = Bottle()
# 使用内存数据库
db = PeeweePlugin('sqlite:///:memory:')
# 创建User模型
class User(Model):
name = CharField()
class Meta:
database = db.proxy
# 将Peewee插件安装到Bottle应用中
app.install(db)
用户评论