Kaustav Ghosh
09/24/2024, 4:10 PMuser
09/24/2024, 4:10 PMmetadata.yaml
and pyproject.toml
file must match to ensure that connector release is consistent. [source](https://docs.airbyte.com/connector-development/connector-metadata-file) 2. spec.yaml
or `spec.json`: The Source
class in the Python CDK implements the Spec
operation by looking for a file named spec.yaml
(or spec.json
) in the module's root by default. This is expected to be a json schema file that specifies the required configuration. [source](https://docs.airbyte.com/connector-development/cdk-python/basic-concepts#the-source-class) 3. `manifest.yaml`: This file describes how the data should be read from the API source, as well as what inputs can be used to configure the connector. [source](https://docs.airbyte.com/connector-development/config-based/tutorial/connecting-to-the-API-source) Please note that the structure and content of these files must adhere to the guidelines provided in the Airbyte documentation.Kaustav Ghosh
09/24/2024, 4:15 PMuser
09/24/2024, 4:16 PMuser
09/24/2024, 4:16 PM