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

924 Views Asked by At

I have searched all over and can't figure out how to get a list of all the design documents for a specific database in CouchDB?

1

There are 1 best solutions below

3
On BEST ANSWER

here is how using a straight HTTP call.

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

here is 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)