Metadata-Version: 2.1
Name: query-parser
Version: 0.1.1
Summary: 
Home-page: https://github.com/quenti77/qs-parser
Author: Quentin Ysambert
Author-email: quentin.ysambert@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Project-URL: Repository, https://github.com/quenti77/qs-parser
Description-Content-Type: text/markdown

# qs-parser

## Install

For use this lib with poetry :
```sh
poetry add query-parser
```

For use this lib with pip :
```sh
pip install query-parser
```

## Usage

```python
from query_parser.parser import parse_query_string

print(parse_query_string("a=1&b=2&c=3&b[]=4&b[]=5&b[other]=6"))
# {'a': '1', 'b': {'0': '2', '1': '4', '2': '5', 'other': '6'}, 'c': '3'}
```

