BedquiltDB

This is the documentation for the core BedquiltDB PostgreSQL extension.

BedquiltDB is a JSON document store built on top of PostgreSQL. It combines the ease-of-use of NoSQL document stores with the integrity and stability of PostgreSQL.

You should probably start with the Overview section of the BedquiltDB Guide .

# Example in Python
db = BedquiltClient(dbname="example")

users = db['users']

users.insert({
    "name": "Sarah Jones",
    "email": "sarah@example.com",
    "address": {
        "street": "4 Market Lane",
        "city": "Edinburgh"
    }
})

sarah = users.find_one({"email": "sarah@example.com"})
sarah['likes'] = ['icecream', 'code']
users.save(sarah)

BedquiltDB is open-source software. The source-code is freely available on github.

Sections

BedquiltDB Guide

Spec

Core API