asyncmongo
asyncmongo copied to clipboard
OrderedDict Support
I'm trying to maintain the order of JSON variables, for some silly reason that matters to my project. In the PyMongo driver, I use mongo.find({},as_class=OrderedDict) to force it to return as an OrderedDict, rather than a traditional, unordered dictionary. This is a 2.7+ (or PyPy) feature, but it's a very useful one to me.
Is there any way using asyncmongo to force it to return using an OrderedDict, using as_class, or globally changing something?