@route('/locations', method='GET')
def get_location():
entity = db['locations'].find({'coordinate2d': {'$near': [37.871593, -122.272747]}}).limit(3)
if not entity:
abort(404, 'No nearby locations')
return entity
The response for the above portion of code is:
Error 500: Internal Server Error
Sorry, the requested URL 'http://localhost:8080/locations' caused an error:
Unsupported response type: <type 'dict'>
How can I grab that information from mongo as a type Bottle can return as JSON?
db.findcall with a simple dictionary literal? If it works that way, the problem must be Mongo-related. Is it doesn't, it's Bottle-related. – Helgi Feb 23 at 14:35