Analytics API
TabularDataFormat1
Output format for tabular analytics data.
Values
jsonl
JSON Lines: a stream of JSON objects, one object per line
Recommended format for fast and easy parsing.
You don't need a separate library for this, just split the input by lines and parse each one as JSON.
See jsonlines.org for an exact spec, although it really is as simple as it sounds.
json
JSON
Note that the responses could be huge, so parsing might consume a lot of RAM.
csv
CSV with comma as field separator, double quotes for quoting and empty/null values represented by an empty string