bigjson icon indicating copy to clipboard operation
bigjson copied to clipboard

Python library that reads JSON files of any size.

Results 8 bigjson issues
Sort by recently updated
recently updated
newest added

### Hi, I have this json file content but it's not load `金牌综艺` string utf-8 ``` [{ "name": "金牌综艺", "logo": "https://parco-zh.github.io/demo/new3.png", "url": "http://121.31.30.91:8081/ysten-business/live/saishijx/1.m3u8", "category": null, "languages": [ { "code": "zho",...

when i run ' element = j[4]' , it return 'TypeError: Key must be string!';; then i check the result of j, it return '';; may i have a look...

I am trying to read a file which contains data with NaN values, e.g. `{"a": NaN}`. I know this is not valid JSON, however I would like to know if...

I'm loading a json file to a bigjson object, and iterating through items. Consider the following example: ``` with open('fileA.json`,'rb') as f: dictA = bigjson.load(f) for k,v in dictA.iteritems(): list_v...

Hello, While reading a json I want to get the whole object for a given loop in python dictionary datatype. At the moment, it is in bigjson.obj.Object form. Is there...

https://github.com/henu/bigjson/blob/b562d7be1e8de689cfaf44fdca7a636a8d21ca20/bigjson/filereader.py#L124 The error messages for locating erroneous json files can be quite handy, however, I encounter some problems with deciphering the actual buffer position. I might be wrong, but I...

The lib is orders of magnitude slower that `json.load()` when using `.to_python()`. Would it be possible to implement [local] `.to_python()` over `json.load()`? That ought to make the lib as fast...