A simple Python wrapper around the Fivetran REST API.
pip install pyfivetran
from pyfivetran import FivetranClient
ftran = FivetranClient(api_key, api_secret)
# create endpoint objects
connector_endpoint = ftran.connector_endpoint
certificate_endpoint = ftran.certificate_endpoint
For more examples, see the examples directory.
pip install poetry
git clone https://github.com/kharigardner/pyfivetran.git
cd pyfivetran
poetry install
poetry install --with dev
# run tests
pytest tests
# create feature branch
git checkout -b feature/my-feature
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
MIT. Fivetran API is subject to licensing, usage, and other terms and conditions not covered by this project. For more information, see the Fivetran API documentation.