pystitchconnect

Python SDK for Stitch Connect API.


Keywords
stitch
License
MIT
Install
pip install pystitchconnect==0.0.5

Documentation

License: MIT Build Status Python Versions

pystitch

a Python SDK for the Stitch Connect API

Installation

pip install pystitchconnect

Example Usage

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)