JSONL (JSON Lines) is underrated:
- Great for streaming structured logs
- Easy to parse with low memory overhead
- One object per line = grep-friendly
Python snippet to load:
import json with open("file.jsonl") as f: for line in f: print(json.loads(line))
import json with open("file.jsonl") as f: for line in f: print(json.loads(line))