Using your browser to access the admin interface;
http://192.168.1.99:5984/_utils/
Looking at a view for a specific database with your browser. In this case the database is “stock_values” and the view is “all_stocks” (yes you need the “_view” and the “all” part of it);
http://192.168.1.99:5984/stock_values/_view/all_stocks/all
I was really getting tripped up by figuring out the corresponding python version which would be;
for ro in db.view(‘all_stocks/all’): print ro.id
Just a comment so I’ll find it later;
In the 0.9 release the view locations have changed, per;
http://wiki.apache.org/couchdb/Breaking_changes
http://hostname:5984/mydb/_view/designname/viewname?limit=10 will now look like http://hostname:5984/mydb/_design/designname/_view/viewname?limit=10