TypeError: Object of type Cursor is not JSON serializable

Solution
@app.route("/Planets", methods = ['GET'])
def getplanetinfo():
    planets = planet_stats.find({}, {'_id': 0})
    return jsonify(list(planets))