with open('grafinfo.txt', 'w') as outfile:
for key in eventlvl: #eventlvl это масив строк
value = len(db.events.distinct("uid", {"eventName" : key}))
dict = {key : value}
json.dump(dict, outfile)
а потом я хотел бы из этих данных сделать график, но я не совсем понимаю как достать данные из файла.
with open('grafinfo.txt', 'w') as outfile:
result = {}
for key in eventlvl: #eventlvl это масив строк
value = len(db.events.distinct("uid", {"eventName" : key}))
result.update({key : value})
json.dump(result, outfile, ensure_ascii=False)