someJson = {'x': 1, 'y': 57}
print(json.dumps(someJson))
f1=open("test.txt", 'w')
json.dump(someJson, f1)
json.loads(str)
json.load(file)
import json
from bson import ObjectId
class JSONEncoder(json.JSONEncoder):
def default(self, o):
if isinstance(o, ObjectId):
return str(o)
return json.JSONEncoder.default(self, o)
JSONEncoder().encode(analytics)