So I am able to create an HTML design document (CouchApp) that queries a view, runs some calculations, then puts everything into a nice JSON object and display the raw object in the browser/console, but I am wondering if there is a way to have the GET request for the HTML file return the JSON object directly?
I have to run multiple views on a large group of documents, and calling each one individually from Django takes too long. My goal here is to be able to httplib out to the HTML page, and just return the JSON object to my Django view.