Python library to urlencode a multidimensional dict.
multidimensional_urlencode lets you url encode a multidimensional dict:
>>> try:
... from urllib.parse import unquote
... except:
... from urllib import unquote
>>> from multidimensional_urlencode import urlencode
>>> e = urlencode({"a": {"b": {"c": [1, 2, 3], "d": "e"}}})
>>> unquote(e)
'a[b][c][]=1&a[b][c][]=2&a[b][c][]=3&a[b][d]=e'
Documentation can be found here
- Sam Marcellus <marcellus@uber.com>
- Charles-Axel Dein <charles@uber.com>
Available under the MIT License.
Copyright Uber 2017