I get a POST request with data formatted as a MultiDict object. Where can I find documentation about this data structure? and what is the best method (library) for decoding this data into a dictionary object (with lists and dictionaries inside)
I found this in urllib3 but not sure what it is. preferred method.
I already wrote most of the code to fit this data style, so I don’t really hope to change the way we send data from the HTML form itself.
thanks
source share