Python and CouchDB

Start with installing the Python 3.x libraries for CouchDB

pip3 install CouchDB

Afterwards you can start with printing all documents

import couchdb

couch = Server('http[s]://[user:password@](servername|ip)[:port]')

db = couch['database']

for docid in db:
  doc = db[docid]
  print(doc)

You find more information under https://github.com/djc/couchdb-python, https://pythonhosted.org/CouchDB/

Published: November 30 2014

blog comments powered by Disqus