diff --git a/docs/connector-development/README.md b/docs/connector-development/README.md index b1bcbd6a0072..97c9eaa41b2e 100644 --- a/docs/connector-development/README.md +++ b/docs/connector-development/README.md @@ -64,7 +64,7 @@ and choose the relevant template by using the arrow keys. This will generate a n Search the generated directory for "TODO"s and follow them to implement your connector. For more detailed walkthroughs and instructions, follow the relevant tutorial: * [Speedrun: Building a HTTP source with the CDK](tutorials/cdk-speedrun.md) -* [Building a HTTP source with the CDK](tutorials/cdk-tutorial-python-http/) +* [Building a HTTP source with the CDK](tutorials/cdk-tutorial-python-http/getting-started.md) * [Building a Python source](tutorials/building-a-python-source.md) * [Building a Python destination](tutorials/building-a-python-destination.md) * [Building a Java destination](tutorials/building-a-java-destination.md) diff --git a/docs/connector-development/cdk-python/README.md b/docs/connector-development/cdk-python/README.md index b7225e4697b3..9b059fe0f04c 100644 --- a/docs/connector-development/cdk-python/README.md +++ b/docs/connector-development/cdk-python/README.md @@ -23,7 +23,7 @@ cd airbyte-integrations/connector-templates/generator then follow the interactive prompt. Next, find all `TODO`s in the generated project directory -- they're accompanied by lots of comments explaining what you'll need to do in order to implement your connector. Upon completing all TODOs properly, you should have a functioning connector. -Additionally, you can follow [this tutorial](https://docs.airbyte.io/connector-development/tutorials/cdk-tutorial-python-http) for a complete walkthrough of creating an HTTP connector using the Airbyte CDK. +Additionally, you can follow [this tutorial](../tutorials/cdk-tutorial-python-http/getting-started.md) for a complete walkthrough of creating an HTTP connector using the Airbyte CDK. ### Concepts & Documentation @@ -45,7 +45,7 @@ Airbyte recommends using the CDK template generator to develop with the CDK. The For tips on useful Python knowledge, see the [Python Concepts](python-concepts.md) page. -You can find a complete tutorial for implementing an HTTP source connector in [this tutorial](../tutorials/cdk-tutorial-python-http/) +You can find a complete tutorial for implementing an HTTP source connector in [this tutorial](../tutorials/cdk-tutorial-python-http/getting-started.md) ### Example Connectors diff --git a/docs/connector-development/tutorials/cdk-tutorial-python-http/README.md b/docs/connector-development/tutorials/cdk-tutorial-python-http/README.md deleted file mode 100644 index 7339bcb01a2f..000000000000 --- a/docs/connector-development/tutorials/cdk-tutorial-python-http/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# Python CDK: Creating a HTTP API Source - diff --git a/docs/connector-development/tutorials/cdk-tutorial-python-http/4-connection-checking.md b/docs/connector-development/tutorials/cdk-tutorial-python-http/connection-checking.md similarity index 100% rename from docs/connector-development/tutorials/cdk-tutorial-python-http/4-connection-checking.md rename to docs/connector-development/tutorials/cdk-tutorial-python-http/connection-checking.md diff --git a/docs/connector-development/tutorials/cdk-tutorial-python-http/1-creating-the-source.md b/docs/connector-development/tutorials/cdk-tutorial-python-http/creating-the-source.md similarity index 100% rename from docs/connector-development/tutorials/cdk-tutorial-python-http/1-creating-the-source.md rename to docs/connector-development/tutorials/cdk-tutorial-python-http/creating-the-source.md diff --git a/docs/connector-development/tutorials/cdk-tutorial-python-http/5-declare-schema.md b/docs/connector-development/tutorials/cdk-tutorial-python-http/declare-schema.md similarity index 100% rename from docs/connector-development/tutorials/cdk-tutorial-python-http/5-declare-schema.md rename to docs/connector-development/tutorials/cdk-tutorial-python-http/declare-schema.md diff --git a/docs/connector-development/tutorials/cdk-tutorial-python-http/3-define-inputs.md b/docs/connector-development/tutorials/cdk-tutorial-python-http/define-inputs.md similarity index 100% rename from docs/connector-development/tutorials/cdk-tutorial-python-http/3-define-inputs.md rename to docs/connector-development/tutorials/cdk-tutorial-python-http/define-inputs.md diff --git a/docs/connector-development/tutorials/cdk-tutorial-python-http/0-getting-started.md b/docs/connector-development/tutorials/cdk-tutorial-python-http/getting-started.md similarity index 100% rename from docs/connector-development/tutorials/cdk-tutorial-python-http/0-getting-started.md rename to docs/connector-development/tutorials/cdk-tutorial-python-http/getting-started.md diff --git a/docs/connector-development/tutorials/cdk-tutorial-python-http/2-install-dependencies.md b/docs/connector-development/tutorials/cdk-tutorial-python-http/install-dependencies.md similarity index 100% rename from docs/connector-development/tutorials/cdk-tutorial-python-http/2-install-dependencies.md rename to docs/connector-development/tutorials/cdk-tutorial-python-http/install-dependencies.md diff --git a/docs/connector-development/tutorials/cdk-tutorial-python-http/6-read-data.md b/docs/connector-development/tutorials/cdk-tutorial-python-http/read-data.md similarity index 100% rename from docs/connector-development/tutorials/cdk-tutorial-python-http/6-read-data.md rename to docs/connector-development/tutorials/cdk-tutorial-python-http/read-data.md diff --git a/docs/connector-development/tutorials/cdk-tutorial-python-http/8-test-your-connector.md b/docs/connector-development/tutorials/cdk-tutorial-python-http/test-your-connector.md similarity index 100% rename from docs/connector-development/tutorials/cdk-tutorial-python-http/8-test-your-connector.md rename to docs/connector-development/tutorials/cdk-tutorial-python-http/test-your-connector.md diff --git a/docs/connector-development/tutorials/cdk-tutorial-python-http/7-use-connector-in-airbyte.md b/docs/connector-development/tutorials/cdk-tutorial-python-http/use-connector-in-airbyte.md similarity index 100% rename from docs/connector-development/tutorials/cdk-tutorial-python-http/7-use-connector-in-airbyte.md rename to docs/connector-development/tutorials/cdk-tutorial-python-http/use-connector-in-airbyte.md diff --git a/docs/integrations/custom-connectors.md b/docs/integrations/custom-connectors.md index b1bc028915e4..e29c5468a9a0 100644 --- a/docs/integrations/custom-connectors.md +++ b/docs/integrations/custom-connectors.md @@ -12,7 +12,7 @@ If you'd like to build new connectors, or update existing ones, **for your own u ## Developing your own connector -It's easy to code your own connectors on Airbyte. Here is a link to instruct on how to code new sources and destinations: [building new connectors](../contributing-to-airbyte/) +It's easy to code your own connectors on Airbyte. Here is a link to instruct on how to code new sources and destinations: [building new connectors](../connector-development/README.md) While the guides in the link above are specific to the languages used most frequently to write integrations, **Airbyte connectors can be written in any language**. Please reach out to us if you'd like help developing connectors in other languages.