This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients phr, serhiy.storchaka
Date 2020-05-14.11:09:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1589454571.77.0.222619618468.issue40623@roundup.psfhosted.org>
In-reply-to
Content
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.
History
Date User Action Args
2020-05-14 11:09:31serhiy.storchakasetrecipients: + serhiy.storchaka, phr
2020-05-14 11:09:31serhiy.storchakasetmessageid: <1589454571.77.0.222619618468.issue40623@roundup.psfhosted.org>
2020-05-14 11:09:31serhiy.storchakalinkissue40623 messages
2020-05-14 11:09:31serhiy.storchakacreate