How do you get a list of all _design documents for a given database in CouchDB?

I searched everything and can't figure out how to get a list of all the project documents for a particular database in CouchDB?

+3
source share
1 answer

here's how to use a direct http call.

http://localhost:5984/mydatabase/_all_docs?startkey=%22_design%22&endkey=%22_design0%22

here's how to get all _design documents and their views for all databases using couchdbkit

#!/usr/bin/env python

from couchdbkit import *

server = Server()
dbs = server.all_dbs()
for dbname in dbs:
    db = server.get_or_create_db(dbname)
    result = db.all_docs(startkey='_design', endkey='_design0')
    for doc in result.all():
       designdoc = db.get(doc['id'])
       if 'views' in designdoc:
           for view in designdoc['views']:
              print '%s/%s/_view/%s' % (dbname, designdoc['_id'], view)
+3
source

Source: https://habr.com/ru/post/1743252/


All Articles