N
N
novicheck2016-07-11 12:58:45
Google
novicheck, 2016-07-11 12:58:45

How to transfer data from mongodb documents to google spreadsheets for further processing?

There is a code snippet:
print list(db.events.aggregate([{"$match": {"is_buyer": 0, "status": 'start'}},
{"$group": {"_id": "$ eventName", "total": {'$sum': 1}}},
{"$sort": {"_id": 1}}
]))
how do I send this data to google spreadsheets (or something similar) for post-processing (using formulas, etc.)?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
L
lega, 2016-07-11
@lega

You can export to csv file via mongoexport and open it in excel/openoffice

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question