https://github.com/kedro-org/kedro-starters
Templates for your Kedro projects.
https://github.com/kedro-org/kedro-starters
hacktoberfest kedro project-template
Last synced: 3 months ago
JSON representation
Templates for your Kedro projects.
- Host: GitHub
- URL: https://github.com/kedro-org/kedro-starters
- Owner: kedro-org
- License: apache-2.0
- Created: 2020-12-08T15:50:28.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-06-17T10:54:29.000Z (4 months ago)
- Last Synced: 2025-06-17T11:47:32.247Z (4 months ago)
- Topics: hacktoberfest, kedro, project-template
- Language: Python
- Homepage:
- Size: 6.36 MB
- Stars: 76
- Watchers: 3
- Forks: 62
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kedro-starters
This repository contains all official [Kedro starters](https://docs.kedro.org/en/stable/kedro_project_setup/starters.html). A starter can be used to bootstrap a new Kedro project as follows:
```bash
kedro new --starter=
```The following aliases are available:
* [Alias `astro-airflow-iris`](astro-airflow-iris): The [Kedro Iris dataset example project](https://docs.kedro.org/en/0.18.14/get_started/new_project.html) with a minimal setup for deploying the pipeline on Airflow with [Astronomer](https://www.astronomer.io/).
* [Alias `databricks-iris`](databricks-iris): The [Kedro Iris dataset example project](https://docs.kedro.org/en/0.18.14/get_started/new_project.html) with a minimal setup for running and deploying the pipeline on Databricks.
* [Alias `spaceflights-pandas`](spaceflights-pandas): The [spaceflights tutorial](https://docs.kedro.org/en/stable/tutorial/spaceflights_tutorial.html) example code.
* [Alias `spaceflights-pandas-viz`](spaceflights-pandas-viz): The [spaceflights tutorial](https://docs.kedro.org/en/stable/tutorial/spaceflights_tutorial.html) example code with viz feature examples (plotting with plotly and matplotlib).
* [Alias `spaceflights-pyspark`](spaceflights-pyspark): An alternative Kedro Spaceflights example, using [PySpark](https://docs.kedro.org/en/stable/integrations/pyspark_integration.html).
* [Alias `spaceflights-pyspark-viz`](spaceflights-pyspark-viz): An alternative Kedro Spaceflights example, using [PySpark](https://docs.kedro.org/en/stable/integrations/pyspark_integration.html) with viz feature examples (plotting with plotly and matplotlib).
Archived starters which are no longer maintained:
* [Alias `pandas-iris`](pandas-iris): The [Kedro Iris dataset example project](https://docs.kedro.org/en/0.18.14/get_started/new_project.html)
* [Alias `pyspark-iris`](pyspark-iris): An alternative Kedro Iris dataset example, using [PySpark](https://docs.kedro.org/en/stable/integrations/pyspark_integration.html)
* [Alias `pyspark`](pyspark): The configuration and initialisation code for a [Kedro pipeline using PySpark](https://docs.kedro.org/en/stable/integrations/pyspark_integration.html)
* [Alias `standalone-datacatalog`](standalone-datacatalog): A minimum setup to use the traditional [Iris dataset](https://www.kaggle.com/uciml/iris) with Kedro's [`DataCatalog`](https://docs.kedro.org/en/stable/data/data_catalog.html), which is a core component of Kedro. This starter is of use in the exploratory phase of a project. For more information, read the guide to [standalone use of the `DataCatalog`](https://docs.kedro.org/en/stable/notebooks_and_ipython/kedro_as_a_data_registry.html). This starter was formerly known as `mini-kedro`.