NoSQLite:在SQLite之上的NoSQL 源码
NoSQLite 受启发,以Python编写SQLite之上的超简单NoSQL样式数据存储 >>> from nosqlite import init, Document, Field >>> init(':memory:') >>> from nosqlite.view import view >>> class Movie(Document): ... indexes = ["director"] ... name = Field() ... director = Field() ... ... @view ... def count_by_dir
文件列表
NoSQLite-master.zip
(预估有个9文件)
NoSQLite-master
nosqlite
view.py
2KB
db.py
1KB
__init__.py
93B
index.py
1KB
tests.py
5KB
document.py
7KB
requirements.txt
0B
.gitignore
218B
暂无评论