Showing posts with label mongoengine. Show all posts
Showing posts with label mongoengine. Show all posts

Wednesday, 11 June 2014

mongoengine objects to json

If you want to make json data from mongoengine objects.

example is given from flask framework

@app.route('/json', methods=['GET', 'POST'])
def json_data():
    return Company.objects.all().to_json()



If you want to convert json data into mongodb object try this

c = Company.objects.from_json(company)