* initiate connector * add doc * fix schema * add docs * fix comments * add logo * add finished job filter * suggested changes * add metadata.yml * add definition id * update schemas --------- Co-authored-by: Sajarin <sajarindider@gmail.com>
19 lines
480 B
Python
19 lines
480 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource
|
|
|
|
"""
|
|
This file provides the necessary constructs to interpret a provided declarative YAML configuration file into
|
|
source connector.
|
|
|
|
WARNING: Do not modify this file.
|
|
"""
|
|
|
|
|
|
# Declarative Source
|
|
class SourceCaptainData(YamlDeclarativeSource):
|
|
def __init__(self):
|
|
super().__init__(**{"path_to_yaml": "manifest.yaml"})
|