Skip to content

Commit

Permalink
fix examples header (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-rp authored Oct 4, 2023
1 parent 58f8ad1 commit 880e6e0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/website/docs/examples/_examples-header.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ cd ./dlt/docs/examples/${props.slug}
# install dlt with duckdb
pip install "dlt[duckdb]"
# run the example script
python run.py`}
python ${props.run_file}.py`}
</CodeBlock>
3 changes: 2 additions & 1 deletion docs/website/docs/examples/incremental_loading/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import Header from '../_examples-header.md';
The state of your incremental loads will be persisted in
your selected destination and restored and used on each new load,
making it very easy to keep your loaded dataset up to date with the source."
slug="incremental_loading" />
slug="incremental_loading"
run_file="zendesk" />

## Incremental loading with the Zendesk API

Expand Down
3 changes: 2 additions & 1 deletion docs/website/docs/examples/transformers/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ import Header from '../_examples-header.md';
<Header
intro="In this example you will learn how load a list of pokemon from the pokeapi and with the help of dlt transformers
automatically query additional data per retrieved pokemon. You will also learn how to harness parallelism with a thread pool."
slug="transformer" />
slug="transformer"
run_file="pokemon" />


## Using transformers with the pokemon api
Expand Down

0 comments on commit 880e6e0

Please sign in to comment.