json-stream
json-stream copied to clipboard
Simple streaming JSON parser and encoder.
Fixes https://github.com/daggaz/json-stream/issues/27
Loving this library, thank you for building it! I'm using [`httpx`](https://pypi.org/project/httpx/) most everywhere in my project. With a little hackery and copying what you did to gain compatibility with `requests`,...
It would be useful if the library came with some utility function/method to recursively turn `PersistentStreamingJSONList`s and `PersistentStreamingJSONObject`s into regular Python lists and dicts. It's 5 lines of code so...
Fixes #16. Just a suggestion for how to do this in a non-recursive manner to allow use on arbitrarily deep structures.
I noticed that there is no mention of asyncio support. Are there any plans to support asyncio in the future? Currently, when async generators are used, it throws a `TypeError:...
Recently I read article [Parsing JSON is a minefield](https://seriot.ch/projects/parsing_json.html) and got interested in testing `json_stream` with very detailed dataset from article. There is two news! Good one: `json_stream` passed all...
I noticed this in the future work section: supporting long string values as streams themselves. Is this already implemented by any chance? If not, do you have a plan on...
Let's say I have some 3rd party library that deals with JSON but isn't capable of streaming. I have a large amount of JSON, more data than we want to...
It's not mentioned in the documentation, so I'm wondering if this is already possible. I need a streaming JSON parser that can give me one JSON object after the other....
In response to #45