Add a verified source
Follow the steps below to create a pipeline from a
verified source contributed by dlt users.
Please make sure you have installed dlt before following the
steps below.
1. Initialize project
Create a new empty directory for your dlt project by running:
mkdir various_pipelines
cd various_pipelines
List available sources to see their names and descriptions:
dlt init --list-sources
Now pick one of the source names, for example, pipedrive and a destination, i.e., bigquery:
dlt init pipedrive bigquery
The command will create your pipeline project by copying over the pipedrive folder and creating a
.dlt folder:
├── .dlt
│ ├── config.toml
│ └── secrets.toml
├── pipedrive
│ └── helpers
│ └── __init__.py