1
0
mirror of synced 2025-12-25 02:09:19 -05:00

Reorganize CDK documentation directory structure to be less nested (#3270)

* Move CDK docs down a level, consolidate directories.

* Change name of tutorial

Co-authored-by: Abhi Vaidyanatha <abhivaidyanatha@Abhis-MacBook-Pro.local>
This commit is contained in:
Abhi Vaidyanatha
2021-05-07 12:50:33 -07:00
committed by GitHub
parent 715dfc5e34
commit 05bdb368a0
4 changed files with 17 additions and 23 deletions

View File

@@ -1,4 +1,4 @@
# Airbyte Python Connector Development Framework (CDK)
# Connector Development Kit (Python CDK)
The Airbyte Python CDK is a framework for rapidly developing production-grade Airbyte connectors.
The CDK currently offers helpers specific for creating Airbyte source connectors for:

View File

@@ -1 +1 @@
# Creating a HTTP Source with the Airbyte Python CDK
# Creating an HTTP API Source with the Airbyte Python CDK

View File

@@ -93,23 +93,22 @@
* [Contributing to Airbyte](contributing-to-airbyte/README.md)
* [Code of Conduct](contributing-to-airbyte/code-of-conduct.md)
* [Developing Locally](contributing-to-airbyte/developing-locally.md)
* [Connector Development Kit (Python)](../airbyte-cdk/python/README.md)
* [Concepts](../airbyte-cdk/python/docs/concepts/README.md)
* [Overview](../airbyte-cdk/python/docs/concepts/overview.md)
* [Stream Slices](../airbyte-cdk/python/docs/concepts/stream_slices.md)
* [Tutorials](../airbyte-cdk/python/docs/tutorials/README.md)
* [Creating an HTTP API Source](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/README.md)
* [Getting Started](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/0-getting-started.md)
* [Step 1: Creating the Source](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/1-creating-the-source.md)
* [Step 2: Install Dependencies](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/2-install-dependencies.md)
* [Step 3: Define Inputs](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/3-define-inputs.md)
* [Step 4: Connection Checking](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/4-connection-checking.md)
* [Step 5: Declare the Schema](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/5-declare-schema.md)
* [Step 6: Read Data](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/6-read-data.md)
* [Step 7: Use the Connector in Airbyte](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/7-use-connector-in-airbyte.md)
* [Step 8: Test Connector](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/8-test-your-connector.md)
* [Developing Connectors](contributing-to-airbyte/building-new-connector/README.md)
* [Using the Airbyte CDK](contributing-to-airbyte/using-the-airbyte-cdk/README.md)
* [Python](../airbyte-cdk/python/README.md)
* [Concepts](../airbyte-cdk/python/docs/concepts/README.md)
* [Overview](../airbyte-cdk/python/docs/concepts/overview.md)
* [Stream Slices](../airbyte-cdk/python/docs/concepts/stream_slices.md)
* [Tutorials](../airbyte-cdk/python/docs/tutorials/README.md)
* [Python CDK Tutorial](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/README.md)
* [Getting Started](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/0-getting-started.md)
* [Step 1: Creating the Source](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/1-creating-the-source.md)
* [Step 2: Install Dependencies](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/2-install-dependencies.md)
* [Step 3: Define Inputs](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/3-define-inputs.md)
* [Step 4: Connection Checking](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/4-connection-checking.md)
* [Step 5: Declare the Schema](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/5-declare-schema.md)
* [Step 6: Read Data](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/6-read-data.md)
* [Step 7: Use the Connector in Airbyte](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/7-use-connector-in-airbyte.md)
* [Step 8: Test Connector](../airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/8-test-your-connector.md)
* [Best Practices](contributing-to-airbyte/building-new-connector/best-practices.md)
* [Java Connectors](contributing-to-airbyte/building-new-connector/java-connectors.md)
* [Monorepo Python Development](contributing-to-airbyte/building-new-connector/monorepo-python-development.md)

View File

@@ -1,5 +0,0 @@
# Using the Airbyte CDK
Airbyte Connector Development Kits (CDK) significantly accelerate connector development. We currently provide a Python CDK, and a Java one is in development.
Navigate here for more information on the [Python CDK](./contributing-to-airbyte/building-new-connector/using-the-airbyte-cdk/python)