Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/k-bx/jquery-unparam
A python library to parse jquery.param() string.
https://github.com/k-bx/jquery-unparam
Last synced: 13 days ago
JSON representation
A python library to parse jquery.param() string.
- Host: GitHub
- URL: https://github.com/k-bx/jquery-unparam
- Owner: k-bx
- License: bsd-2-clause
- Created: 2013-07-06T10:39:20.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-11-03T08:42:24.000Z (about 9 years ago)
- Last Synced: 2024-10-04T15:44:03.054Z (about 1 month ago)
- Language: Python
- Size: 118 KB
- Stars: 7
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Jquery-Unparam library
======================- GitHub repo: https://github.com/k-bx/jquery-unparam
A python library to parse jquery.param() string.
Can be used like this:
```
>>> from jquery_unparam import jquery_unparam
>>> request_params = u'a%5Bone%5D=1&a%5Btwo%5D=2&a%5Bthree%5D=3&b%5B%5D=1&b%5B%5D=2&b%5B%5D=3'
>>> print(jquery_unparam(request_params))
{u'a': {u'three': u'3', u'two': u'2', u'one': u'1'}, u'b': [u'1', u'2', u'3']}
```For jquery.param docs see http://api.jquery.com/jQuery.param/