I am trying to retrieve the data I have inserted into mongodb via pymongo.
My code for insert is below (after parsing via regex)
if connection is not
Repeating existing basic tutorial documentation:
start = datetime.datetime(2012, 2, 2, 6, 35, 6, 764)
end = datetime.datetime(2012, 2, 2, 6, 55, 3, 381)
for doc in db.wing_model.find({'time': {'$gte': start, '$lt': end}}):
print doc
Finally, why does the same query return different cursor object locations?
Where should that be the case?
You see two different cursor instances which will likely return the same result set - or?