1
0
mirror of synced 2026-01-10 18:02:07 -05:00
Files
airbyte/airbyte-integrations/connectors/source-workable/main.py
Delena Malan a520e601c3 🎉 New Source: Workable (low-code SDK) (#18033)
* Generate initial Workable connector

* Implement jobs route

* Make acceptance tests pass

* Implement pagination

* Try to fix pagination (not yet working)

* Make pagination work

* Add created_after parameter

* Add Workable docs

* Move unused test

* Add candidates stream

* Fix acceptance tests

* Remove unused files

* Add stages stream

* Add recruiters stream

* Remove sample_state file

* Add Workable to docs/integrations/README.md

* Update changelog

* Change Sentry page size back

* Rename created_after_date to start_date

* Remove data type map

* Add start_date to sample_config.json

* Add streams documentation to yaml

* add title to params inspec

* format files

* fix: added source to source_definitions

Co-authored-by: Harshith Mullapudi <harshithmullapudi@gmail.com>
Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
2022-10-27 14:31:57 +05:30

14 lines
251 B
Python

#
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
#
import sys
from airbyte_cdk.entrypoint import launch
from source_workable import SourceWorkable
if __name__ == "__main__":
source = SourceWorkable()
launch(source, sys.argv[1:])