I am writing a few REST APIs.
In one of those I want to know order in which the parameters were mentioned in the query string.
Right now, I am accessing query params using
request.params
This returns a nested-multi-dict. But I don't think the keys are ordered correctly.
Any other way, I can get ordered-dict?
Thanks in advance !!