I need to make some benchmarks on a small database (64MB) and I need to figure out what is the smartest way to fetch whole Mongo collection into python object with PyMongo? In JavaScript, there is toArray() method but I cannot find anything similar in python. Thanks in advance!

link|improve this question

77% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Have you tried?

result = list(db.collection.find())
link|improve this answer
Huh, it really works! I thought, that it is too simple to be possible :) – k_wisniewski Jan 4 at 17:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.