Connector SDK Connector Quickstart Setup Guide
Follow our guides to create a custom connection to integrate your data source with Fivetran using the Connector SDK.
Use this quickstart guide if you are already familiar with the Connector SDK. If this is your first time exploring the Connector SDK, follow our Detailed Guide.
Need to get your connector up and running quickly?
Our team of Professional Services experts is available to help you get your first Connector SDK connector delivering for your business, free of charge. File a support ticket to get started.
Save time nowPrerequisites
To connect your Connector SDK to Fivetran, you need:
- Your Fivetran REST API key.
- A Python development environment. We support Python version ≥3.9 and ≤3.12.
- A target data source you need to build a connector for and a way to use Python to connect to get the data you need. Most Python libraries can be used to help you achieve this.
See our Connector SDK for details and examples of how to use our Connector SDK.
Setup instructions
Set up or go to your Python development environment and create a directory for your new connector project. Create a virtual environment if you wish.
Install the Fivetran Connector SDK:
pip install fivetran-connector-sdk
Review the provided examples.
Pick an example to use as a template.
Copy its code and paste it into a file in your connector project directory called
connector.py
.Modify the code in
connector.py
to write your connector. Include a completedrequirements.txt
file if your code uses additional Python libraries.Test the connector by running it locally:
fivetran debug
This test creates a local
warehouse.db
file, which is a Duck DB representation of the data that the connector delivers to your destination. This file is located in<root_directory>/files/warehouse.db
.Check your connector by reviewing the Duck DB
warehouse.db
file using DBeaver or using the DuckDB CLI commands.Deploy the connector by running the following command:
fivetran deploy --api-key <FIVETRAN-API-KEY> --destination <DESTINATION-NAME> --connection <CONNECTION-NAME>
Your
<FIVETRAN-API-KEY>
is the base64-encoded{APIi-key}:{API-secret}
used in all other Fivetran API calls. See our REST API documentation to learn where to find your API key.The
<DESTINATION-NAME>
identifies the destination you want your new connector to deliver to. It is the name of your destination in the Fivetran dashboard.The
<CONNECTION_NAME>
identifies the connection both in Fivetran’s Dashboard and for future updates.
Related articles
description Connector Overview