Serhiy Storchaka <storchaka+cpyt...@gmail.com> added the comment:

If you want to read json objects encoded one per line (JSON Lines or NDJSON), 
you can do this with just two lines of code:

    for line in file:
        yield json.loads(line)

This format is not formally standardized, but it is popular because its support 
in any programming language is trivial.

If you want to use more complex format, I afraid it is not popular enough to be 
supported in the stdlib. You can try to search third-party library which 
supports your flavour of multi-object JSON format or write your own code if 
this format is specific for your application.

----------
nosy: +serhiy.storchaka

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue40623>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to