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/