I am new to MongoDB and I'm having trouble with getting my dot-notation queries to work...
I am using pymongo with MongoDB running on a remote Amazon EC2 instance...
Instead of writing massive XML parsing code to extract lots of different data, I am converting the XML to JSON, dumping everything into MongoDB, and then attempting to extract the pieces of data I want using dot-notation queries...
The data gets converted into JSON and inserted into Mongo fine. I can see all of the inserts (from the python shell)...
for item in db.feed.find(): item
Here is an example item that is returned...
{u'timestamp': datetime.datetime(2010, 11, 8, 20, 19, 55, 87000), u'message': u'{"category": {"text": "Scores"}, "XML_File_ID": {"text": "12292403"}, "game": {"status": {"text": "4 Qtr", "attrib": {"numeral": "4", "type": "P"}}, "time_r": {"text": "10:01"}, "vscore": {"text": "27"}, "vteam": {"text": "Pittsburgh", "attrib": {"id": "082"}}, "hteam": {"text": "Cincinnati", "attrib": {"id": "064"}}, "hscore": {"text": "14"}}, "seasontype": {"text": "Regular"}, "schedule_id": {"text": "3151"}, "location": {"city": {"text": "Pittsburgh"}, "state": {"text": "PA"}, "country": {"text": "USA"}}, "time_stamp": {"text": " November 8, 2010, at 11:19 PM ET "}, "game_id": {"text": "3151"}, "sport": {"text": "NFL"}, "heading": {"text": "BC-ABP+082:064* 27 14 4R10:01"}}', u'_id': ObjectId('4cd8cbebe8b5d58527000016')}
So I'm trying to do a query like this, but I'm not getting any results...
db.feed.find_one({"message.category.text": "Scores"})
What's the proper way to do these type of queries and get the whole document back in the response? Thanks!