I have a db set up in mongo that I\'m accessing with pymongo.
I\'d like to be able to pull a small set of fields into a list of dictionaries. So, something like wha
What you can do is to call mapReduce in pymongo and pass it the find query as an argument, it could be like this:
db.yourcollection.Map_reduce(map_function, reduce_function,query='{}')
About the projections I think that you would need to do them in the reduce function since query only specify the selection criteria as it says in the mongo documentation