tap-harvest
A singer.io tap for extracting data from the Harvest REST API, written in python 3.
Author: Jordan Ryan (jordan@facetinteractive.com)
Quick start
-
Install
Clone this repository, and then install using setup.py. We recommend using a virtualenv:
> virtualenv -p python 3 venv > source venv/bin/activate > python setup.py install
-
Create your tap's config file which should look like the following:
{ "access_token": "YOUR_OAUTH_TOKEN", "start_date": "2017-04-19T13:37:30Z", "account_name": "YOUR_ACCOUNT_NAME" } -
[Optional] Create the initial state file
{ "clients": "2000-01-01T00:00:00Z", "contacts": "2000-01-01T00:00:00Z", "invoices": "2000-01-01T00:00:00Z", "invoice_item_categories": "2000-01-01T00:00:00Z", "invoice_payments": "2000-01-01T00:00:00Z", "invoice_messages": "2000-01-01T00:00:00Z", "expenses": "2000-01-01T00:00:00Z", "expense_categories": "2000-01-01T00:00:00Z", "projects": "2000-01-01T00:00:00Z", "project_users": "2000-01-01T00:00:00Z", "tasks": "2000-01-01T00:00:00Z", "project_tasks": "2000-01-01T00:00:00Z", "people": "2000-01-01T00:00:00Z", "time_entries": "2000-01-01T00:00:00Z" } -
Run the application
tap-harvestcan be run with:tap-harvest --config config.json [--state state.json]
Copyright © 2017 Stitch