Skip to content

Commit

Permalink
Use consistent capitalization in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
burnash authored Sep 10, 2024
1 parent dad2a08 commit 4ad8a35
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ pipeline.run(orders)
Look at the [Connector X + Arrow Example](../../examples/connector_x_arrow/) to see how to load data from production databases fast.
:::

## Loading `json` documents
If you want to skip default `dlt` JSON normalizer, you can use any available method to convert json documents into tabular data.
## Loading JSON documents
If you want to skip default `dlt` JSON normalizer, you can use any available method to convert JSON documents into tabular data.
* **pandas** has `read_json` and `json_normalize` methods
* **pyarrow** can infer table schema and convert json files into tables with `read_json`
* **pyarrow** can infer table schema and convert JSON files into tables with `read_json`
* **duckdb** can do the same with `read_json_auto`

```py
Expand Down

0 comments on commit 4ad8a35

Please sign in to comment.