TheBigDB - 结构化数据库


MIT
跨平台
Python

软件简介

TheBigDB 是一个非常松散的结构化数据库软件。其 API 是基于 HTTP 的 GET 和 POST 请求。

示例 JavaScript 代码:

var thebigdb = new TheBigDB;

thebigdb.Statement("search",
  {
    nodes: [{match: ""}, "job", "President of the United States"],
    period: {from: "2000-01-01", to: "2002-01-01"}
  },
  function(data){ console.log(data) }
);