datasci-info / AG101

0 stars 0 forks source link

在python上show DB #12

Open anniehuang921 opened 9 years ago

anniehuang921 commented 9 years ago

希望可以一次在python上show出全部document

在mongo下可以show出全部, python下只會說是一個Cursor

learning_resources_collection.find()

在python要show:

for post in learning_resources_collection.find():
       print post

or

[post for post in learning_resources_collection.find()]