* 🎉 New Source: Pendo [Configuration Based Source] - add 4 full import streams to bootstrap the new source connector - add documentation - add svg - generate uuid and add a record in source_definitions.yaml - issue: https://github.com/airbytehq/airbyte/issues/2977 * address feedback: 1) correct schema; 2) add invalid_config and sample_config * correct the sample_config.json * auto-bump connector version --------- Co-authored-by: Yiyang Li <yiyangli2010@gmail.com> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
14 lines
242 B
Python
14 lines
242 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
import sys
|
|
|
|
from airbyte_cdk.entrypoint import launch
|
|
from source_pendo import SourcePendo
|
|
|
|
if __name__ == "__main__":
|
|
source = SourcePendo()
|
|
launch(source, sys.argv[1:])
|