如何不通过pymongo限制python中的mongo查询

时间:2017-05-10 10:08:13

标签: python pymongo

我想使用find方法查询所有记录,但过了一会儿,find方法就完成了。

像这样的代码:

print doc.find().count()
idx = 0
for record in doc.find():
    idx = idx+1
    print('%d, [%s]\n') % (idx, record['desc'])

打印这个:

4137381
...
25344, [1831****683|00|20160122040901|02|699056|1530831000|0|20160122040901] 
25345, [1598****686|00|20160111162049|02|699056|1530831000|0|20160111162049]

0 个答案:

没有答案