-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Streaming json instead of loading whole object to memory. #3
Comments
Thanks, I'll look to it. |
I've checked JSONStream. May be I doing something wrong, but it does not process generator input until it done. Means it can't parse incoming stream. Failed attemt here: https://github.com/amarao/json4shell/tree/jsonstream/tools |
|
Thanks! I'll recheck it again. On 06/17/2014 04:49 PM, Way, No wrote:
|
Not always stdin give you all data instantly. So instead of waiting EOF, would be better to process json instantly.
Some implementations of json readers with stream support:
https://github.com/dominictarr/JSONStream
https://pykler.github.io/yajl-py/
https://github.com/rtyler/py-yajl/
The text was updated successfully, but these errors were encountered: