Description
Parses JSON as a stream instead of loading the whole document at once. It helps Python programs process large files, logs, exports, or API responses while using less memory.
Use it when data may be too large for ordinary JSON loading. It still reads structured input, so applications should validate untrusted data before acting on parsed values.