示例#1
0
def GetStar():
    print("Getting star")
    star = mongo.db.stars
    print(star)
    try:
        results = star.find()
        results = [Helpers.GetProperties(x) for x in results]
        print(results)
    except Exception as e:
        print(e)
    return jsonify({'result': results})