a Python SDK for the Stitch Connect API.
pip install pystitchconnect
import os
from pystitch import PyStitch
STITCH_API_TOKEN = os.environ["STITCH_API_TOKEN"]
# Instantiate a PyStitch client using your API token.
client = PyStitch(token=STITCH_API_TOKEN)
# List all available Source objects.
sources = client.list_sources()
# Trigger a replication job for a specific Source.
response = client.start_replication_job(source_id=12345)
assert(response.ok)