Simple query string parser for LHS filtering, sorting and pagination. This project is directly based on Qurl by Hector Carballo (https://github.com/hector-co/Qurl).
Installing
$ pip install pyqurl
Usage
from pyqurl import create_query_from_string
create_query_from_string("name[ct]=john")
create_query_from_string("price[gt]=20")
create_query_from_string("disabled_at[nn]=true")
create_query_from_string("year[rng]=2020,2022")
create_query_from_string("color[eq]=yellow")
create_query_from_string("color=yellow")
create_query_from_string("category[in]=drama,romance,comedy")
create_query_from_string("category[nin]=horror,action")