querystring-parser icon indicating copy to clipboard operation
querystring-parser copied to clipboard

QueryString parser for Python/Django that correctly handles nested dictionaries

Results 6 querystring-parser issues
Sort by recently updated
recently updated
newest added

drop python 2.7 fix error in parser on line 174 wrong index access for python3 hope this is useful for anyone except me. Btw, thanks for the repo. I didn't...

Hi guys, I am parsing a querystring that includes an array value. However this library is interpreting it as a hash with a key of `''`. ```ruby # intended to...

Hi, I have a query string `filter%5BnumCars%5D=10` and when I use `querystring_parser.parser.parse(qs)`, it returns `{'filter': {'numCars': '10'}}` Is there a way to return 10 as an integer rather than string?

Title says it all - why the HECK isn't this standard behavior for [`urllib.parse.parse_qs`](https://docs.python.org/3.10/library/urllib.parse.html#urllib.parse.parse_qs) - surely we have all asked this question at some point, hoping y'all have some context!

Running the test suite with Python 3.7.4 results in a failure in `__main__.NormalizedParse`: ``` ====================================================================== FAIL: test_parse_normalized (__main__.NormalizedParse) ---------------------------------------------------------------------- Traceback (most recent call last): File "querystring_parser/tests.py", line 208, in test_parse_normalized...

querystring_parser version="1.2.3" Python 3.7.2 ### Problem If query string containg "empty" parameter whithout equal sign at the end - parser fails with MalformedQueryStringError exception. ### Example amoCRM webhook post data:...