Metadata-Version: 2.1
Name: stitch-api
Version: 1.0.0
Summary: UNKNOWN
Home-page: https://github.com/Talend/stitch-api
Author: Thomas Bennett
Author-email: tbennett@talend.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests

# stitch-api

Stitch python client library.

## Installation

`pip install stitch-api`

## pipenv

`pipenv install` uses the Pipefile to install package dependencies.

## Usage

Must get API key from Stitch Account
Basic API usage getting list of all Sources:

```python
from stitch_api.sources import Sources

client = Sources('your-stitch-application-api-token')
client.fetch_sources()
```

