Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Querying by "_id" doesn't return file in MongoDB in Python, using PyMongo

I'm using Python + MongoDB + PyMongo in Openshift

import os
import gridfs
from django.http import HttpResponse
from pymongo.connection import Connection
from django.shortcuts import get_object_or_404, render_to_response
from django.http import HttpResponseRedirect, HttpResponse
from django.template import Context, RequestContext,loader

connection = Connection('mongodb://sbose78:[email protected]:10068/BOSE')
db=connection['BOSE']
fs=gridfs.GridFS(db)

When I query a file by _id, this is what I get.

>>> fs.exists({"_id":'504a36d93324f20944247af2'})
False

When I query with the corresponding filename:

>>> fs.exists({"filename":'foo.txt'})

True

What could be possibly be going wrong?

Thanks.

like image 1000
sbose Avatar asked Dec 06 '22 12:12

sbose


1 Answers

For pymongo versions < 2.2, you need to import ObjectId with

from pymongo.objectid import ObjectId

For versions 2.2 and above, the import is instead

from bson.objectid import ObjectId

Then you can query gridfs like so:

fs.exists(ObjectId('504a36d93324f20944247af2'))
like image 193
Thomas Avatar answered Dec 11 '22 09:12

Thomas