SyntaxFix
Write A Post
Hire A Developer
Questions
Easy
import pymongo conn = pymongo.MongoClient() db = conn.test #test is my database col = db.spam #Here spam is my collection array = list(col.find()) print array
There you go