Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
OrderedDict Support #11
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
e1ven commentedJul 20, 2011
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?