Socket
Socket
Sign inDemoInstall

multidimensional_urlencode

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multidimensional_urlencode

Urlencode a multidimensional dict


Maintainers
1

multidimensional_urlencode

Python library to urlencode a multidimensional dict.

.. image:: https://travis-ci.org/uber/multidimensional_urlencode.png?branch=master :target: https://travis-ci.org/uber/multidimensional_urlencode

Quick Start

multidimensional_urlencode lets you url encode a multidimensional dict:

.. code-block:: python

>>> 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

Documentation can be found here <http://multidimensional-urlencode.readthedocs.org/en/latest/>_

Authors

License

Available under the MIT License.

Copyright Uber 2017

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc