文件名称:bottle-peewee:将 Peewee ORM 集成到 Bottle 框架
文件大小:10KB
文件格式:ZIP
更新时间:2024-07-25 07:02:02
Python
奶瓶 Bottle Peewee -- 提供 Peewee ORM 与 Bottle 框架的集成。 内容 要求 Python> = 2.6 安装 Bottle Peewee应该使用 pip 安装: pip install bottle-peewee 用法 from bottle import Bottle from bottle_peewee import PeeweePlugin from peewee import Model, CharField app = Bottle() db = PeeweePlugin('sqlite:///:memory:') class User(Model): name = CharField() class Meta(object): database = db.proxy app.install(db) d
【文件预览】:
bottle-peewee-master
----setup.py(2KB)
----.gitignore(373B)
----requirements.txt(14B)
----Makefile(2KB)
----bottle_peewee.py(3KB)
----.travis.yml(338B)
----MANIFEST.in(194B)
----.bumpversion.cfg(114B)
----LICENSE(1KB)
----setup.cfg(73B)
----README.rst(2KB)
----tests()
--------__init__.py(0B)
--------test_bottle_peewee.py(891B)
----.coveragerc(58B)
----AUTHORS.rst(155B)
----CONTRIBUTING.rst(3KB)
----requirements-tests.txt(33B)
----Changelog(53B)
----tox.ini(252B)