Skip to content

Commit

Permalink
source-zendesk-talk: Convert to airbyte-lib (#34204)
Browse files Browse the repository at this point in the history
Co-authored-by: Serhii Lazebnyi <53845333+lazebnyi@users.noreply.github.com>
  • Loading branch information
Joe Reuter and lazebnyi committed Jan 16, 2024
1 parent 2662f07 commit 9078ec6
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 8 deletions.
@@ -0,0 +1,3 @@
[run]
omit =
source_zendesk_talk/run.py
9 changes: 2 additions & 7 deletions airbyte-integrations/connectors/source-zendesk-talk/main.py
Expand Up @@ -2,12 +2,7 @@
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#


import sys

from airbyte_cdk.entrypoint import launch
from source_zendesk_talk import SourceZendeskTalk
from source_zendesk_talk.run import run

if __name__ == "__main__":
source = SourceZendeskTalk()
launch(source, sys.argv[1:])
run()
Expand Up @@ -11,7 +11,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: c8630570-086d-4a40-99ae-ea5b18673071
dockerImageTag: 0.1.10
dockerImageTag: 0.1.11
dockerRepository: airbyte/source-zendesk-talk
documentationUrl: https://docs.airbyte.com/integrations/sources/zendesk-talk
githubIssueLabel: source-zendesk-talk
Expand Down
5 changes: 5 additions & 0 deletions airbyte-integrations/connectors/source-zendesk-talk/setup.py
Expand Up @@ -15,6 +15,11 @@
]

setup(
entry_points={
"console_scripts": [
"source-zendesk-talk=source_zendesk_talk.run:run",
],
},
name="source_zendesk_talk",
description="Source implementation for Zendesk Talk.",
author="Airbyte",
Expand Down
@@ -0,0 +1,14 @@
#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#


import sys

from airbyte_cdk.entrypoint import launch
from source_zendesk_talk import SourceZendeskTalk


def run():
source = SourceZendeskTalk()
launch(source, sys.argv[1:])
1 change: 1 addition & 0 deletions docs/integrations/sources/zendesk-talk.md
Expand Up @@ -74,6 +74,7 @@ The Zendesk connector should not run into Zendesk API limitations under normal u

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------|
| 0.1.11 | 2024-01-12 | [34204](https://github.com/airbytehq/airbyte/pull/34204) | prepare for airbyte-lib |
| 0.1.10 | 2023-12-04 | [33030](https://github.com/airbytehq/airbyte/pull/33030) | Base image migration: remove Dockerfile and use python-connector-base image |
| 0.1.9 | 2023-08-03 | [29031](https://github.com/airbytehq/airbyte/pull/29031) | Reverted `advancedAuth` spec changes |
| 0.1.8 | 2023-08-01 | [28910](https://github.com/airbytehq/airbyte/pull/28910) | Updated `advancedAuth` broken references |
Expand Down

0 comments on commit 9078ec6

Please sign in to comment.