I am using the python-cloudant library, trying to do a query:
import cloudant
my_database = client['database']
query = cloudant.query.Query(my_database,selector={'selector': {'$gt': 0}},fields=['doi'])
for doc in query(limit=100, skip=100)['docs']:
print doc
This gives me an error: HTTPError: 400 Client Error: Bad Request for url: https://myurl.com/mydatabase/_find
With this error when I try loading the page in a browser: {"error":"method_not_allowed","reason":"Only POST allowed"}
What am I missing here?