I am pretty new to Python and Cloudant/couchdb, so please direct me to any resources that you think might be helpful.
I know that there is a similar question but I will post this in case someone who sees this has a ton of experience with Cloudant (and my error message is different). I am trying to query a bunch of JSON documents stored on cloudant. I have couchpy installed for the purpose of creating views in python. I'm using code from the Mining Social Web O'Reilly Book. The code I'm using works if I'm querying my local couchdb server, but not the cloudant server.
I've been receiving this error message:
db.view('index/entity_count_by_doc', group=True)],
File "build/bdist.macosx-10.6-intel/egg/couchdb/client.py", line 984, in __iter__
File "build/bdist.macosx-10.6-intel/egg/couchdb/client.py", line 1003, in rows
File "build/bdist.macosx-10.6-intel/egg/couchdb/client.py", line 990, in _fetch
File "build/bdist.macosx-10.6-intel/egg/couchdb/client.py", line 880, in _exec
File "build/bdist.macosx-10.6-intel/egg/couchdb/http.py", line 393, in get_json
File "build/bdist.macosx-10.6-intel/egg/couchdb/http.py", line 374, in get
File "build/bdist.macosx-10.6-intel/egg/couchdb/http.py", line 419, in _request
File "build/bdist.macosx-10.6-intel/egg/couchdb/http.py", line 310, in request
couchdb.http.ServerError: (500, ('unknown_query_language', 'python'))
Any ideas on alternative methods of querying using python on cloudant? I'm open to other solutions. I'm sure I'm overlooking something obvious.