文件名称:macaron:SQLite的简单OR映射器
文件大小:99KB
文件格式:ZIP
更新时间:2024-06-16 15:08:46
Python
Macaron:O / R映射器 概述 Macaron是用于和的小型且简单的对象关系映射器(ORM)。 它作为单个文件模块分发,除了没有其他依赖项。 Macaron提供了对SQLite数据库的轻松访问方法。 并且它通过插件机制支持 Web框架。 例子: >>> import macaron >>> # You need to have initialized your model before; see tutorial >>> macaron.macaronage(dbfile="members.db") >>> team = Team.create(name="Houkago Tea Time") >>> team.members.append(first_name="Ritsu", last_name="Tainaka", part="Dr") <Member object 1
【文件预览】:
macaron-master
----MANIFEST.in(76B)
----README.rst(3KB)
----test()
--------test_history.py(1KB)
--------test_attributes.py(7KB)
--------models.py(1KB)
--------testall.py(775B)
--------before_0.4.0-pre()
--------test_basic.py(8KB)
--------test_matching_field.py(725B)
--------test_custom_field.py(3KB)
--------test_complex_selection.py(11KB)
--------test_query.py(3KB)
----LICENSE(1KB)
----macaron.py(57KB)
----doc()
--------class()
--------tutorial.rst(6KB)
--------conf.py(9KB)
--------models.rst(6KB)
--------make.bat(4KB)
--------_templates()
--------changes.rst(780B)
--------overview.rst(163B)
--------webapp.rst(2KB)
--------Makefile(5KB)
--------_theme()
--------index.rst(2KB)
--------module.rst(2KB)
--------_static()
----examples()
--------bottle()
----setup.py(1KB)