py-jsonq
py-jsonq copied to clipboard
A simple Python package to Query over Json Data
I have a file of records structured like so: ```json [ { "case_id": 1, "demographic": { "race": "white", "age": 55, } }, { "case_id": 2, "demographic": { "race": "white", "age":...
I would love pagination methods like `skip` and `limit`, at the moment I runs something like: .`get()[int:int]` ps: Congrats for this lib.
`` from csvparser import * from pyjsonq import JsonQ channel_list_by_type,channel_list,channel_catagory_list =parse_csv_to_json() qe =JsonQ(data={"channel_list":channel_list}) res = qe.at('channel_list').where('Channel_type', '=',"Movies Hindi").get() print(res) print("len =",len(res)) qe =JsonQ(data={"channel_list":channel_list}) res = qe.at('channel_list').where('Channel_type', '=',"MARATHI").get() print(res) print("len `=",len(res))`...
you need to add case sensitive functionality for perfection i'm using this package and i'm having trouble with searching for a word that has a first letter in higher case.