Julius Kibunjia Srihari Thyagarajan commited on
Commit
1282838
·
unverified ·
1 Parent(s): 8dd2b9d

Update duckdb/009_loading_json.py

Browse files

Co-authored-by: Srihari Thyagarajan <[email protected]>

Files changed (1) hide show
  1. duckdb/009_loading_json.py +1 -1
duckdb/009_loading_json.py CHANGED
@@ -76,7 +76,7 @@ def _(mo):
76
  r"""
77
  ## Using `read_json`
78
 
79
- For greater control over how the JSON is read, we can directly call the [`read_json`](https://duckdb.org/docs/stable/data/json/loading_json#the-read_json-function) function. It supports a few different arguments some common ones are:
80
 
81
  - `format='array'` or `format='newline_delimited'` - the former tells DuckDB that the rows should be read from a top-level JSON array while latter means the rows should be read from JSON objects separated by a newline (JSONL/NDJSON).
82
  - `ignore_errors=true` - skips lines with parse errors when reading newline delimited JSON.
 
76
  r"""
77
  ## Using `read_json`
78
 
79
+ For greater control over how the JSON is read, we can directly call the [`read_json`](https://duckdb.org/docs/stable/data/json/loading_json#the-read_json-function) function. It supports a few different arguments some common ones are:
80
 
81
  - `format='array'` or `format='newline_delimited'` - the former tells DuckDB that the rows should be read from a top-level JSON array while latter means the rows should be read from JSON objects separated by a newline (JSONL/NDJSON).
82
  - `ignore_errors=true` - skips lines with parse errors when reading newline delimited JSON.