CouchDB

Clustered database that allows you to run a single logical database server on any number of servers or VMs.

Seamless multi-master sync, that scales from Big Data to Mobile, with an intuitive HTTP/JSON API and designed for Reliability.

python CouchDB lib

   1 import couchdb
   2 server = couchdb.client.Server('http://user:pwd@example.org/dbx/')
   3 db = server['dbtest']
   4 print( db.info() )
   5 doc = db['00998876870c1935a6d2de43ade4']
   6 print( doc )
   7 
   8 for row in db.view('_all_docs'):
   9   print(row.id)

CouchDB (last edited 2021-04-13 20:59:37 by localhost)