From e3cb042f333a9d87dac1d863df093248636ebbbb Mon Sep 17 00:00:00 2001 From: "Sherif A. Nada" Date: Wed, 17 Mar 2021 12:47:57 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=96=20=20Better=20document=20the=20gen?= =?UTF-8?q?eric=20language=20template?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../contributing-to-airbyte/building-new-connector/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/contributing-to-airbyte/building-new-connector/README.md b/docs/contributing-to-airbyte/building-new-connector/README.md index 07ff831a7ccb3..f1535927ce6cf 100644 --- a/docs/contributing-to-airbyte/building-new-connector/README.md +++ b/docs/contributing-to-airbyte/building-new-connector/README.md @@ -27,9 +27,8 @@ Each requirement has a subsection below. If you are building a connector in any of the following languages/frameworks, then you're in luck! We provide autogenerated templates to get you started quickly: * **Python Source Connector** -* [**Singer**](https://singer.io)**-based Python Source Connector**. [Singer.io](https://singer.io/) is an established open source framework with a large community and many available connectors \(known as taps & targets\). To build an Airbyte connector from a Singer tap, we wrap the tap in a thin Python package to make it Airbyte Protocol-compatible. See the [Github Connector](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-github-singer) for an example of an Airbyte Connector implemented on top of a Singer tap. - -If your language/framework is not listed above, we have a minimal generic template option to get you started. +* [**Singer**](https://singer.io)**-based Python Source Connector**. [Singer.io](https://singer.io/) is an open source framework with a large community and many available connectors \(known as taps & targets\). To build an Airbyte connector from a Singer tap, wrap the tap in a thin Python package to make it Airbyte Protocol-compatible. See the [Github Connector](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-github-singer) for an example of an Airbyte Connector implemented on top of a Singer tap. +* **Generic Connector**: This template provides a basic starting point for any language. #### Creating a connector from a template