Top "Jsonlines" questions

JSON Lines is a format for storing structured data that may be processed one record at a time.

Loading and parsing a JSON file with multiple JSON objects

I am trying to load and parse a JSON file in Python. But I'm stuck trying to load the file: …

python json file jsonlines
Loading JSONL file as JSON objects

I want to load a JSONL file as JSON objects in python. Is there an easy way to do so?

python json jsonlines
how to parse a large, Newline-delimited JSON file by JSONStream module in node.js?

I have a large json file, its is Newline-delimited JSON, where multiple standard JSON objects are delimited by extra newlines, …

json node.js jsonlines
Filter empty and/or null values with jq

I have a file with jsonlines and would like to find empty values. {"name": "Color TV", "price": "1200", "available": ""} {"name": "DVD …

json null jq key-value jsonlines
Parsing JSON record-per-line with jq?

I've got a tool that outputs a JSON record on each line, and I'd like to process it with jq. …

json grouping jq jsonlines
Pandas dataframe to JSONL (JSON Lines) conversion

I need to convert pandas data frame to JSONL format. I couldn't find a good package to do it and …

python pandas jsonlines
Convert JSON lines to JSON array using jq

Firstly, I'm new to jq, like 1 day new, I'm also new to JSON, I'm an SQL guy so I'm learning …

arrays json jq jsonlines
Converting comma delimited JSON to a newline delimited node

I have a JSON file which I am reading with node, modifying and saving it as a json file. I'm …

json node.js jq fs jsonlines