1. 首页
  2. 数据库
  3. 其它
  4. NoSQLite:在SQLite之上的NoSQL 源码

NoSQLite:在SQLite之上的NoSQL 源码

上传者: 2021-02-08 17:16:02上传 ZIP文件 7.75KB 热度 10次
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
用户评论