├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ ├── doc-improvement.md │ ├── feature-request.md │ └── software_design_proposal.md ├── PULL_REQUEST_TEMPLATE.md ├── dco.yml ├── demo-dark.png ├── demo-light.png ├── dependabot.yml ├── stale.yml ├── styles │ └── Kedro │ │ ├── Repetition.yml │ │ ├── Spellings.yml │ │ ├── abbreviations.yml │ │ ├── gender.yml │ │ ├── headings.yml │ │ ├── ignore-names.txt │ │ ├── ignore.txt │ │ ├── inclusive.yml │ │ ├── links.yml │ │ ├── oxfordcomma.yml │ │ ├── pronouns.yml │ │ ├── sentencelength.yml │ │ ├── toowordy.yml │ │ ├── ukspelling.yml │ │ ├── weaselwords.yml │ │ └── words.yml └── workflows │ ├── all-checks.yml │ ├── auto-merge-prs.yml │ ├── benchmark-performance.yml │ ├── check-release.yml │ ├── detect-secrets.yml │ ├── docs-language-linter.yml │ ├── docs-linkcheck.yml │ ├── docs-only-checks.yml │ ├── e2e-tests.yml │ ├── label-community-issues.yml │ ├── lint.yml │ ├── merge-gatekeeper.yml │ ├── nightly-build.yml │ ├── no-response.yml │ ├── pip-compile.yml │ ├── pipeline-performance-test.yml │ ├── release-starters.yml │ ├── sync.yml │ └── unit-tests.yml ├── .gitignore ├── .gitpod.yml ├── .lycheeignore ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .secrets.baseline ├── .vale.ini ├── CITATION.cff ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── MANIFEST.in ├── Makefile ├── README.md ├── RELEASE.md ├── SECURITY.md ├── asv.conf.json ├── behave.ini ├── docs ├── about │ ├── experimental.md │ ├── migration.md │ ├── technical_steering_committee.md │ └── telemetry.md ├── api │ ├── config │ │ ├── kedro.config.AbstractConfigLoader.md │ │ ├── kedro.config.MissingConfigException.md │ │ ├── kedro.config.OmegaConfigLoader.md │ │ └── kedro.config.md │ ├── framework │ │ ├── kedro.framework.cli.md │ │ ├── kedro.framework.context.md │ │ ├── kedro.framework.hooks.md │ │ ├── kedro.framework.md │ │ ├── kedro.framework.project.md │ │ ├── kedro.framework.session.md │ │ └── kedro.framework.startup.md │ ├── index.md │ ├── io │ │ ├── kedro.io.AbstractDataset.md │ │ ├── kedro.io.AbstractVersionedDataset.md │ │ ├── kedro.io.CachedDataset.md │ │ ├── kedro.io.CatalogConfigResolver.md │ │ ├── kedro.io.CatalogProtocol.md │ │ ├── kedro.io.DataCatalog.md │ │ ├── kedro.io.DatasetAlreadyExistsError.md │ │ ├── kedro.io.DatasetError.md │ │ ├── kedro.io.DatasetNotFoundError.md │ │ ├── kedro.io.MemoryDataset.md │ │ ├── kedro.io.SharedMemoryCatalogProtocol.md │ │ ├── kedro.io.SharedMemoryDataCatalog.md │ │ ├── kedro.io.Version.md │ │ └── kedro.io.md │ ├── ipython │ │ ├── kedro.ipython.load_ipython_extension.md │ │ ├── kedro.ipython.magic_load_node.md │ │ ├── kedro.ipython.magic_reload_kedro.md │ │ ├── kedro.ipython.md │ │ └── kedro.ipython.reload_kedro.md │ ├── kedro.KedroDeprecationWarning.md │ ├── kedro.KedroPythonVersionWarning.md │ ├── kedro.load_ipython_extension.md │ ├── kedro.logging.md │ ├── kedro.utils.md │ ├── pipeline │ │ ├── kedro.pipeline.Pipeline.md │ │ ├── kedro.pipeline.md │ │ └── kedro.pipeline.node.md │ └── runner │ │ ├── kedro.runner.AbstractRunner.md │ │ ├── kedro.runner.ParallelRunner.md │ │ ├── kedro.runner.SequentialRunner.md │ │ ├── kedro.runner.ThreadRunner.md │ │ └── kedro.runner.md ├── assets │ ├── kedro-horizontal-color-on-light.svg │ ├── kedro_logo.svg │ ├── kedro_logo_black.svg │ └── workflow_view.png ├── build │ ├── modular_pipelines.md │ ├── namespaces.md │ ├── nodes.md │ ├── pipeline_introduction.md │ ├── pipeline_registry.md │ ├── run_a_pipeline.md │ └── slice_a_pipeline.md ├── catalog-data │ ├── advanced_data_catalog_usage.md │ ├── data_catalog.md │ ├── data_catalog_yaml_examples.md │ ├── introduction.md │ ├── kedro_dataset_factories.md │ ├── lazy_loading.md │ └── partitioned_and_incremental_datasets.md ├── configure │ ├── advanced_configuration.md │ ├── config_loader_migration.md │ ├── configuration_basics.md │ ├── credentials.md │ └── parameters.md ├── create │ ├── customise_project.md │ ├── minimal_kedro_project.md │ ├── new_project.md │ ├── new_project_tools.md │ └── starters.md ├── deploy │ ├── distributed.md │ ├── index.md │ ├── nodes_grouping.md │ ├── package_a_project.md │ ├── single_machine.md │ └── supported-platforms │ │ ├── airflow.md │ │ ├── amazon_emr_serverless.md │ │ ├── amazon_sagemaker.md │ │ ├── argo.md │ │ ├── aws_batch.md │ │ ├── aws_step_functions.md │ │ ├── azure.md │ │ ├── dagster.md │ │ ├── dask.md │ │ ├── databricks │ │ ├── databricks_dbx_workflow.md │ │ ├── databricks_deployment_workflow.md │ │ ├── databricks_ide_databricks_asset_bundles_workflow.md │ │ ├── databricks_notebooks_development_workflow.md │ │ ├── databricks_visualisation.md │ │ └── index.md │ │ ├── kubeflow.md │ │ ├── prefect.md │ │ └── vertexai.md ├── develop │ ├── automated_testing.md │ ├── debugging.md │ ├── dependencies.md │ ├── linting.md │ ├── logging.md │ └── vibe_coding_with_mcp.md ├── diagrams │ ├── installed-kedro-project.md │ ├── kedro-ipython.md │ ├── kedro-no-project.md │ ├── kedro-plugin.md │ ├── kedro-run.md │ ├── kedro-with-project.md │ └── python-m-project.md ├── extend │ ├── common_use_cases.md │ ├── create_a_starter.md │ ├── hooks │ │ ├── common_use_cases.md │ │ ├── examples.md │ │ └── introduction.md │ ├── how_to_create_a_custom_dataset.md │ ├── plugins.md │ └── session.md ├── getting-started │ ├── architecture_overview.md │ ├── commands_reference.md │ ├── course.md │ ├── faq.md │ ├── glossary.md │ ├── install.md │ └── kedro_concepts.md ├── ide │ ├── set_up_pycharm.md │ └── set_up_vscode.md ├── index.md ├── integrations-and-plugins │ ├── deltalake_versioning.md │ ├── dvc.md │ ├── great_expectations.md │ ├── iceberg_versioning.md │ ├── marimo.md │ ├── mlflow.md │ ├── notebooks_and_ipython │ │ ├── index.md │ │ ├── kedro_and_notebooks.md │ │ └── notebook-example │ │ │ ├── add_kedro_to_a_notebook.ipynb │ │ │ ├── add_kedro_to_a_notebook.md │ │ │ ├── catalog.yml │ │ │ ├── data │ │ │ ├── companies.csv │ │ │ ├── reviews.csv │ │ │ └── shuttles.xlsx │ │ │ ├── parameters.yml │ │ │ └── params.yml │ ├── pandera.md │ └── pyspark_integration.md ├── javascript │ ├── deindex-old-docs.js │ └── readthedocs.js ├── meta │ └── images │ │ ├── KedroArchitecture.drawio │ │ ├── astronomer_cloud_deployment.png │ │ ├── astronomer_connected.png │ │ ├── astronomer_new_deployment.png │ │ ├── autoreload.gif │ │ ├── aws_lambda_functions.png │ │ ├── aws_step_functions_state_machine.png │ │ ├── aws_step_functions_state_machine_listing.png │ │ ├── chart-icon.png │ │ ├── coffee-cup.png │ │ ├── collapsible.gif │ │ ├── complete-mlflow-tracking-kedro-mlflow.png │ │ ├── cook_disjointed.png │ │ ├── cook_joined.png │ │ ├── cook_namespaced.gif │ │ ├── cook_no_namespace.png │ │ ├── cook_params.png │ │ ├── dask_diagnostics_dashboard.png │ │ ├── data_layers.png │ │ ├── data_validation.png │ │ ├── databricks-flow-chart.png │ │ ├── databricks-job-run.png │ │ ├── databricks_authenticate_repo.png │ │ ├── databricks_cluster_edit.png │ │ ├── databricks_cluster_env_vars.png │ │ ├── databricks_cluster_id1.png │ │ ├── databricks_cluster_id2.png │ │ ├── databricks_conf_folder_creation.png │ │ ├── databricks_configure_job_cluster.png │ │ ├── databricks_configure_new_job.png │ │ ├── databricks_create_job_cluster.png │ │ ├── databricks_create_new_job.png │ │ ├── databricks_edit_file.png │ │ ├── databricks_finished_notebook.png │ │ ├── databricks_job_status.png │ │ ├── databricks_new_repo_popup.png │ │ ├── databricks_notebook_creation.png │ │ ├── databricks_notebook_example.png │ │ ├── databricks_notebooks_workflow_finished_notebook.png │ │ ├── databricks_repo_creation.png │ │ ├── databricks_run_all.png │ │ ├── databricks_specify_github_repo.png │ │ ├── databricks_telemetry_consent.png │ │ ├── databricks_viz_demo.png │ │ ├── databricks_viz_link.png │ │ ├── deployment-diagram.png │ │ ├── example_azure_keyvault.png │ │ ├── expand-plot-comparison-view.gif │ │ ├── experiment-tracking-compare-runs.png │ │ ├── experiment-tracking-folder.png │ │ ├── experiment-tracking-icon.png │ │ ├── experiment-tracking-metrics-comparison.gif │ │ ├── experiment-tracking-plots-comparison-expanded.png │ │ ├── experiment-tracking-plots-comparison.png │ │ ├── experiment-tracking-runs-list.png │ │ ├── experiment-tracking_demo.gif │ │ ├── extra-mlflow-tracking.png │ │ ├── final_conf_folder.png │ │ ├── find_databricks_host_and_username.png │ │ ├── focus_mode.png │ │ ├── icon-image-dataset.svg │ │ ├── iris_measurements.png │ │ ├── jupyter_ipython_debug_command.gif │ │ ├── jupyter_ipython_load_node.gif │ │ ├── jupyter_ipython_pdb_command.gif │ │ ├── jupyter_new_notebook.png │ │ ├── jupyter_notebook_workflow_activating_tags.png │ │ ├── jupyter_notebook_workflow_tagging_nodes.png │ │ ├── jupyter_qtconsole.png │ │ ├── jupyter_select_kernel.png │ │ ├── kedro-mlflow-registered-model.png │ │ ├── kedro-publish-share.gif │ │ ├── kedro-session-creation.png │ │ ├── kedro_airflow_dag.png │ │ ├── kedro_airflow_dag_run.png │ │ ├── kedro_architecture.jpg │ │ ├── kedro_gitflow.jpg │ │ ├── kedro_graphic.png │ │ ├── kedro_icon_no-type_blackbg.svg │ │ ├── kedro_icon_no-type_whitebg.svg │ │ ├── kedro_icon_type_blackbg.svg │ │ ├── kedro_icon_type_whitebg.svg │ │ ├── kedro_run_lifecycle.png │ │ ├── kedro_viz_autoreload.gif │ │ ├── kedro_viz_expanding_namespace.gif │ │ ├── kedro_viz_filters_tags.png │ │ ├── kedro_viz_switching_pipeline.gif │ │ ├── mcp_general_guidance.png │ │ ├── mcp_migration.png │ │ ├── mcp_notebook_convertion.png │ │ ├── mlflow-artifact-preview-image.png │ │ ├── mlflow-pickle-artifact.png │ │ ├── mlflow.png │ │ ├── modular_ds.gif │ │ ├── moon-rocket.png │ │ ├── namespaces_collapsed.png │ │ ├── namespaces_collapsed_all.png │ │ ├── namespaces_uncollapsed.png │ │ ├── new_jupyter_browser_window.png │ │ ├── new_jupyter_notebook_view.png │ │ ├── pipeline_error_logs.png │ │ ├── pipeline_observability.png │ │ ├── pipeline_show_metrics.gif │ │ ├── pipeline_visualisation.png │ │ ├── pipeline_visualisation_icon.png │ │ ├── pipeline_visualisation_iris_starter.png │ │ ├── pipeline_visualisation_matplotlib.png │ │ ├── pipeline_visualisation_matplotlib_expand.png │ │ ├── pipeline_visualisation_metrics.png │ │ ├── pipeline_visualisation_plotly.png │ │ ├── pipeline_visualisation_plotly_1.png │ │ ├── pipeline_visualisation_plotly_expand.png │ │ ├── pipeline_visualisation_plotly_expand_1.png │ │ ├── pipeline_visualisation_tutorial.png │ │ ├── pipeline_visualisation_with_layers.png │ │ ├── prefect_2_flow_deployment.png │ │ ├── prefect_2_flow_details.png │ │ ├── prefect_flow_details.png │ │ ├── prefect_flows.png │ │ ├── preview_datasets_expanded.png │ │ ├── preview_datasets_metadata.png │ │ ├── project-tools-choices.png │ │ ├── pycharm_add_breakpoint.png │ │ ├── pycharm_add_conda_env.png │ │ ├── pycharm_add_interpreter.png │ │ ├── pycharm_add_py_run_config.png │ │ ├── pycharm_catalog_schema_mapping.png │ │ ├── pycharm_conf_run_button.png │ │ ├── pycharm_conf_run_dropdown.png │ │ ├── pycharm_debugger_break.png │ │ ├── pycharm_debugger_button.png │ │ ├── pycharm_docker_interpreter_1.png │ │ ├── pycharm_docker_interpreter_2.png │ │ ├── pycharm_docker_interpreter_3.png │ │ ├── pycharm_edit_confs.png │ │ ├── pycharm_edit_py_run_config.png │ │ ├── pycharm_edit_schema_mapping.png │ │ ├── pycharm_ipython_starting_script.png │ │ ├── pycharm_ipython_working_example.png │ │ ├── pycharm_mark_dir_as_sources_root.png │ │ ├── pycharm_preferences.png │ │ ├── pycharm_project_interpreter.png │ │ ├── pycharm_remote_run.png │ │ ├── pycharm_select_conda_interpreter.png │ │ ├── pycharm_ssh_interpreter_1.png │ │ ├── pycharm_ssh_interpreter_2.png │ │ ├── pycharm_ssh_interpreter_3.png │ │ ├── pycharm_ssh_runner.png │ │ ├── run_viz_in_notebook.png │ │ ├── simple_pipeline.png │ │ ├── slice_pipeline_kedro_viz.gif │ │ ├── spark_delta_workflow.png │ │ ├── spark_jobs_databricks.png │ │ ├── viz-vsc-nav-data-node.gif │ │ ├── viz-vsc-nav-function-node.gif │ │ ├── viz_collapse_panel.png │ │ ├── vscode_add_configuration.png │ │ ├── vscode_autoreload_viz.gif │ │ ├── vscode_breakpoint.png │ │ ├── vscode_debug_button.png │ │ ├── vscode_problems_panel.png │ │ ├── vscode_remote_debugger.png │ │ ├── vscode_run.png │ │ ├── vscode_run_debug.png │ │ ├── vscode_set_breakpoint.png │ │ ├── vscode_set_custom_path_using_command_palette.gif │ │ ├── vscode_set_custom_path_using_settings_ui.gif │ │ ├── vscode_setup_interpreter.png │ │ ├── vscode_startup.png │ │ └── vscode_toggle_viz_theme.gif ├── overrides │ ├── main.html │ ├── partials │ │ └── copyright-legal-socials.html │ └── welcome.html ├── readme.md ├── stylesheets │ ├── colors.css │ ├── footer.css │ ├── globals.css │ ├── themes.css │ ├── typography.css │ └── welcome.css └── tutorials │ ├── add_another_pipeline.md │ ├── create_a_pipeline.md │ ├── notebooks_tutorial.md │ ├── set_up_data.md │ ├── settings.md │ ├── spaceflights_tutorial.md │ ├── spaceflights_tutorial_faqs.md │ ├── test_a_project.md │ └── tutorial_template.md ├── features ├── __init__.py ├── environment.py ├── info.feature ├── ipython.feature ├── jupyter.feature ├── load_context.feature ├── load_node.feature ├── new.feature ├── package.feature ├── run.feature ├── starter.feature ├── steps │ ├── __init__.py │ ├── cli_steps.py │ ├── e2e_test_catalog.yml │ ├── e2e_test_cli_config.yml │ ├── sh_run.py │ └── util.py ├── test_plugin │ ├── __init__.py │ ├── plugin.py │ └── pyproject.toml ├── test_starter │ ├── cookiecutter.json │ ├── prompts.yml │ └── {{ cookiecutter.repo_name }} │ │ ├── .gitignore │ │ ├── .telemetry │ │ ├── README.md │ │ ├── conf │ │ ├── README.md │ │ ├── base │ │ │ ├── catalog.yml │ │ │ └── parameters.yml │ │ ├── local │ │ │ └── .gitkeep │ │ └── logging.yml │ │ ├── data │ │ ├── 01_raw │ │ │ ├── .gitkeep │ │ │ └── iris.csv │ │ ├── 02_intermediate │ │ │ └── .gitkeep │ │ ├── 03_primary │ │ │ └── .gitkeep │ │ ├── 04_feature │ │ │ └── .gitkeep │ │ ├── 05_model_input │ │ │ └── .gitkeep │ │ ├── 06_models │ │ │ └── .gitkeep │ │ ├── 07_model_output │ │ │ └── .gitkeep │ │ └── 08_reporting │ │ │ └── .gitkeep │ │ ├── docs │ │ └── source │ │ │ ├── conf.py │ │ │ └── index.rst │ │ ├── ipython_script.py │ │ ├── logs │ │ └── .gitkeep │ │ ├── notebooks │ │ └── .gitkeep │ │ ├── pyproject.toml │ │ ├── requirements.txt │ │ ├── src │ │ └── {{ cookiecutter.python_package }} │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── pipeline_registry.py │ │ │ ├── pipelines │ │ │ ├── __init__.py │ │ │ ├── data_engineering │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── nodes.py │ │ │ │ └── pipeline.py │ │ │ └── data_science │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── nodes.py │ │ │ │ └── pipeline.py │ │ │ └── settings.py │ │ └── tests │ │ ├── __init__.py │ │ ├── pipelines │ │ └── __init__.py │ │ └── test_run.py ├── tools.feature ├── version.feature └── windows_reqs.txt ├── kedro ├── __init__.py ├── __main__.py ├── config │ ├── __init__.py │ ├── abstract_config.py │ └── omegaconf_config.py ├── framework │ ├── __init__.py │ ├── cli │ │ ├── __init__.py │ │ ├── catalog.py │ │ ├── cli.py │ │ ├── hooks │ │ │ ├── __init__.py │ │ │ ├── manager.py │ │ │ ├── markers.py │ │ │ └── specs.py │ │ ├── jupyter.py │ │ ├── pipeline.py │ │ ├── project.py │ │ ├── registry.py │ │ ├── starters.py │ │ └── utils.py │ ├── context │ │ ├── __init__.py │ │ ├── catalog_mixins.py │ │ └── context.py │ ├── hooks │ │ ├── __init__.py │ │ ├── manager.py │ │ ├── markers.py │ │ └── specs.py │ ├── project │ │ ├── __init__.py │ │ ├── default_logging.yml │ │ └── rich_logging.yml │ ├── session │ │ ├── __init__.py │ │ ├── session.py │ │ └── store.py │ └── startup.py ├── io │ ├── README.md │ ├── __init__.py │ ├── cached_dataset.py │ ├── catalog_config_resolver.py │ ├── core.py │ ├── data_catalog.py │ ├── memory_dataset.py │ └── shared_memory_dataset.py ├── ipython │ ├── __init__.py │ ├── logo-32x32.png │ ├── logo-64x64.png │ └── logo-svg.svg ├── logging.py ├── pipeline │ ├── __init__.py │ ├── node.py │ ├── pipeline.py │ └── transcoding.py ├── py.typed ├── runner │ ├── __init__.py │ ├── parallel_runner.py │ ├── runner.py │ ├── sequential_runner.py │ ├── task.py │ └── thread_runner.py ├── templates │ ├── pipeline │ │ ├── cookiecutter.json │ │ └── {{ cookiecutter.pipeline_name }} │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ └── parameters_{{ cookiecutter.pipeline_name }}.yml │ │ │ ├── nodes.py │ │ │ ├── pipeline.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_pipeline.py │ └── project │ │ ├── cookiecutter.json │ │ ├── hooks │ │ ├── post_gen_project.py │ │ └── utils.py │ │ ├── prompts.yml │ │ └── {{ cookiecutter.repo_name }} │ │ ├── .gitignore │ │ ├── README.md │ │ ├── conf │ │ ├── README.md │ │ ├── base │ │ │ ├── catalog.yml │ │ │ └── parameters.yml │ │ ├── local │ │ │ ├── .gitkeep │ │ │ └── credentials.yml │ │ └── logging.yml │ │ ├── data │ │ ├── 01_raw │ │ │ └── .gitkeep │ │ ├── 02_intermediate │ │ │ └── .gitkeep │ │ ├── 03_primary │ │ │ └── .gitkeep │ │ ├── 04_feature │ │ │ └── .gitkeep │ │ ├── 05_model_input │ │ │ └── .gitkeep │ │ ├── 06_models │ │ │ └── .gitkeep │ │ ├── 07_model_output │ │ │ └── .gitkeep │ │ └── 08_reporting │ │ │ └── .gitkeep │ │ ├── docs │ │ └── source │ │ │ ├── conf.py │ │ │ └── index.rst │ │ ├── notebooks │ │ └── .gitkeep │ │ ├── pyproject.toml │ │ ├── requirements.txt │ │ ├── src │ │ └── {{ cookiecutter.python_package }} │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── pipeline_registry.py │ │ │ ├── pipelines │ │ │ └── __init__.py │ │ │ └── settings.py │ │ └── tests │ │ ├── __init__.py │ │ ├── pipelines │ │ └── __init__.py │ │ └── test_run.py └── utils.py ├── kedro_benchmarks ├── README.md ├── __init__.py ├── benchmark_datacatalog.py ├── benchmark_ocl.py └── benchmark_runner.py ├── kedro_technical_charter.pdf ├── mkdocs.yml ├── pyproject.toml ├── static └── img │ ├── kedro-catalog-0.19.json │ └── kedro_banner.png ├── tests ├── __init__.py ├── config │ ├── __init__.py │ └── test_omegaconf_config.py ├── conftest.py ├── framework │ ├── __init__.py │ ├── cli │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── hooks │ │ │ ├── __init__.py │ │ │ └── test_manager.py │ │ ├── pipeline │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── test_pipeline.py │ │ ├── test_catalog.py │ │ ├── test_cli.py │ │ ├── test_cli_hooks.py │ │ ├── test_jupyter.py │ │ ├── test_project.py │ │ ├── test_registry.py │ │ └── test_starters.py │ ├── conftest.py │ ├── context │ │ ├── __init__.py │ │ ├── test_catalog_commands_mixin.py │ │ └── test_context.py │ ├── hooks │ │ ├── __init__.py │ │ └── test_manager.py │ ├── project │ │ ├── __init__.py │ │ ├── test_logging.py │ │ ├── test_pipeline_discovery.py │ │ ├── test_pipeline_registry.py │ │ └── test_settings.py │ ├── session │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_session.py │ │ ├── test_session_extension_hooks.py │ │ ├── test_session_hook_manager.py │ │ └── test_store.py │ └── test_startup.py ├── io │ ├── __init__.py │ ├── conftest.py │ ├── test_cached_dataset.py │ ├── test_catalog_config_resolver.py │ ├── test_core.py │ ├── test_data_catalog.py │ ├── test_memory_dataset.py │ └── test_shared_memory_dataset.py ├── ipython │ ├── __init__.py │ ├── conftest.py │ ├── dummy_function_fixtures.py │ ├── dummy_multiline_fixtures.py │ └── test_ipython.py ├── pipeline │ ├── __init__.py │ ├── test_node.py │ ├── test_node_run.py │ ├── test_pipeline.py │ ├── test_pipeline_integration.py │ ├── test_pipeline_namespaces.py │ ├── test_pipeline_namespacing.py │ └── test_pipeline_with_transcoding.py ├── runner │ ├── __init__.py │ ├── conftest.py │ ├── test_only_missing_outputs.py │ ├── test_parallel_runner.py │ ├── test_resume_logic.py │ ├── test_run_generator_node.py │ ├── test_run_validation.py │ ├── test_sequential_runner.py │ ├── test_task.py │ └── test_thread_runner.py ├── test_import.py └── test_utils.py └── tools ├── __init__.py ├── databricks_build.py ├── github_actions ├── attempt_merge_pr.sh ├── extract_release_notes.py ├── github_actions_release.py └── merge.sh └── print_env.sh /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/doc-improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/ISSUE_TEMPLATE/doc-improvement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/software_design_proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/ISSUE_TEMPLATE/software_design_proposal.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dco.yml: -------------------------------------------------------------------------------- 1 | require: 2 | members: false 3 | -------------------------------------------------------------------------------- /.github/demo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/demo-dark.png -------------------------------------------------------------------------------- /.github/demo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/demo-light.png -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/Repetition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/Repetition.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/Spellings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/Spellings.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/abbreviations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/abbreviations.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/gender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/gender.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/headings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/headings.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/ignore-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/ignore-names.txt -------------------------------------------------------------------------------- /.github/styles/Kedro/ignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/ignore.txt -------------------------------------------------------------------------------- /.github/styles/Kedro/inclusive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/inclusive.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/links.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/oxfordcomma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/oxfordcomma.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/pronouns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/pronouns.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/sentencelength.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/sentencelength.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/toowordy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/toowordy.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/ukspelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/ukspelling.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/weaselwords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/weaselwords.yml -------------------------------------------------------------------------------- /.github/styles/Kedro/words.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/styles/Kedro/words.yml -------------------------------------------------------------------------------- /.github/workflows/all-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/all-checks.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/auto-merge-prs.yml -------------------------------------------------------------------------------- /.github/workflows/benchmark-performance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/benchmark-performance.yml -------------------------------------------------------------------------------- /.github/workflows/check-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/check-release.yml -------------------------------------------------------------------------------- /.github/workflows/detect-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/detect-secrets.yml -------------------------------------------------------------------------------- /.github/workflows/docs-language-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/docs-language-linter.yml -------------------------------------------------------------------------------- /.github/workflows/docs-linkcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/docs-linkcheck.yml -------------------------------------------------------------------------------- /.github/workflows/docs-only-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/docs-only-checks.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/e2e-tests.yml -------------------------------------------------------------------------------- /.github/workflows/label-community-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/label-community-issues.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/merge-gatekeeper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/merge-gatekeeper.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/nightly-build.yml -------------------------------------------------------------------------------- /.github/workflows/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/pip-compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/pip-compile.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-performance-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/pipeline-performance-test.yml -------------------------------------------------------------------------------- /.github/workflows/release-starters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/release-starters.yml -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.lycheeignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.secrets.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.secrets.baseline -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/.vale.ini -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/SECURITY.md -------------------------------------------------------------------------------- /asv.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/asv.conf.json -------------------------------------------------------------------------------- /behave.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/behave.ini -------------------------------------------------------------------------------- /docs/about/experimental.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/about/experimental.md -------------------------------------------------------------------------------- /docs/about/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/about/migration.md -------------------------------------------------------------------------------- /docs/about/technical_steering_committee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/about/technical_steering_committee.md -------------------------------------------------------------------------------- /docs/about/telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/about/telemetry.md -------------------------------------------------------------------------------- /docs/api/config/kedro.config.AbstractConfigLoader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/config/kedro.config.AbstractConfigLoader.md -------------------------------------------------------------------------------- /docs/api/config/kedro.config.MissingConfigException.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/config/kedro.config.MissingConfigException.md -------------------------------------------------------------------------------- /docs/api/config/kedro.config.OmegaConfigLoader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/config/kedro.config.OmegaConfigLoader.md -------------------------------------------------------------------------------- /docs/api/config/kedro.config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/config/kedro.config.md -------------------------------------------------------------------------------- /docs/api/framework/kedro.framework.cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/framework/kedro.framework.cli.md -------------------------------------------------------------------------------- /docs/api/framework/kedro.framework.context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/framework/kedro.framework.context.md -------------------------------------------------------------------------------- /docs/api/framework/kedro.framework.hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/framework/kedro.framework.hooks.md -------------------------------------------------------------------------------- /docs/api/framework/kedro.framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/framework/kedro.framework.md -------------------------------------------------------------------------------- /docs/api/framework/kedro.framework.project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/framework/kedro.framework.project.md -------------------------------------------------------------------------------- /docs/api/framework/kedro.framework.session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/framework/kedro.framework.session.md -------------------------------------------------------------------------------- /docs/api/framework/kedro.framework.startup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/framework/kedro.framework.startup.md -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/index.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.AbstractDataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.AbstractDataset.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.AbstractVersionedDataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.AbstractVersionedDataset.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.CachedDataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.CachedDataset.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.CatalogConfigResolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.CatalogConfigResolver.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.CatalogProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.CatalogProtocol.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.DataCatalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.DataCatalog.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.DatasetAlreadyExistsError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.DatasetAlreadyExistsError.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.DatasetError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.DatasetError.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.DatasetNotFoundError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.DatasetNotFoundError.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.MemoryDataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.MemoryDataset.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.SharedMemoryCatalogProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.SharedMemoryCatalogProtocol.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.SharedMemoryDataCatalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.SharedMemoryDataCatalog.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.Version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.Version.md -------------------------------------------------------------------------------- /docs/api/io/kedro.io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/io/kedro.io.md -------------------------------------------------------------------------------- /docs/api/ipython/kedro.ipython.load_ipython_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/ipython/kedro.ipython.load_ipython_extension.md -------------------------------------------------------------------------------- /docs/api/ipython/kedro.ipython.magic_load_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/ipython/kedro.ipython.magic_load_node.md -------------------------------------------------------------------------------- /docs/api/ipython/kedro.ipython.magic_reload_kedro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/ipython/kedro.ipython.magic_reload_kedro.md -------------------------------------------------------------------------------- /docs/api/ipython/kedro.ipython.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/ipython/kedro.ipython.md -------------------------------------------------------------------------------- /docs/api/ipython/kedro.ipython.reload_kedro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/ipython/kedro.ipython.reload_kedro.md -------------------------------------------------------------------------------- /docs/api/kedro.KedroDeprecationWarning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/kedro.KedroDeprecationWarning.md -------------------------------------------------------------------------------- /docs/api/kedro.KedroPythonVersionWarning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/kedro.KedroPythonVersionWarning.md -------------------------------------------------------------------------------- /docs/api/kedro.load_ipython_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/kedro.load_ipython_extension.md -------------------------------------------------------------------------------- /docs/api/kedro.logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/kedro.logging.md -------------------------------------------------------------------------------- /docs/api/kedro.utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/kedro.utils.md -------------------------------------------------------------------------------- /docs/api/pipeline/kedro.pipeline.Pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/pipeline/kedro.pipeline.Pipeline.md -------------------------------------------------------------------------------- /docs/api/pipeline/kedro.pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/pipeline/kedro.pipeline.md -------------------------------------------------------------------------------- /docs/api/pipeline/kedro.pipeline.node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/pipeline/kedro.pipeline.node.md -------------------------------------------------------------------------------- /docs/api/runner/kedro.runner.AbstractRunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/runner/kedro.runner.AbstractRunner.md -------------------------------------------------------------------------------- /docs/api/runner/kedro.runner.ParallelRunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/runner/kedro.runner.ParallelRunner.md -------------------------------------------------------------------------------- /docs/api/runner/kedro.runner.SequentialRunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/runner/kedro.runner.SequentialRunner.md -------------------------------------------------------------------------------- /docs/api/runner/kedro.runner.ThreadRunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/runner/kedro.runner.ThreadRunner.md -------------------------------------------------------------------------------- /docs/api/runner/kedro.runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/api/runner/kedro.runner.md -------------------------------------------------------------------------------- /docs/assets/kedro-horizontal-color-on-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/assets/kedro-horizontal-color-on-light.svg -------------------------------------------------------------------------------- /docs/assets/kedro_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/assets/kedro_logo.svg -------------------------------------------------------------------------------- /docs/assets/kedro_logo_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/assets/kedro_logo_black.svg -------------------------------------------------------------------------------- /docs/assets/workflow_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/assets/workflow_view.png -------------------------------------------------------------------------------- /docs/build/modular_pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/build/modular_pipelines.md -------------------------------------------------------------------------------- /docs/build/namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/build/namespaces.md -------------------------------------------------------------------------------- /docs/build/nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/build/nodes.md -------------------------------------------------------------------------------- /docs/build/pipeline_introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/build/pipeline_introduction.md -------------------------------------------------------------------------------- /docs/build/pipeline_registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/build/pipeline_registry.md -------------------------------------------------------------------------------- /docs/build/run_a_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/build/run_a_pipeline.md -------------------------------------------------------------------------------- /docs/build/slice_a_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/build/slice_a_pipeline.md -------------------------------------------------------------------------------- /docs/catalog-data/advanced_data_catalog_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/catalog-data/advanced_data_catalog_usage.md -------------------------------------------------------------------------------- /docs/catalog-data/data_catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/catalog-data/data_catalog.md -------------------------------------------------------------------------------- /docs/catalog-data/data_catalog_yaml_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/catalog-data/data_catalog_yaml_examples.md -------------------------------------------------------------------------------- /docs/catalog-data/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/catalog-data/introduction.md -------------------------------------------------------------------------------- /docs/catalog-data/kedro_dataset_factories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/catalog-data/kedro_dataset_factories.md -------------------------------------------------------------------------------- /docs/catalog-data/lazy_loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/catalog-data/lazy_loading.md -------------------------------------------------------------------------------- /docs/catalog-data/partitioned_and_incremental_datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/catalog-data/partitioned_and_incremental_datasets.md -------------------------------------------------------------------------------- /docs/configure/advanced_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/configure/advanced_configuration.md -------------------------------------------------------------------------------- /docs/configure/config_loader_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/configure/config_loader_migration.md -------------------------------------------------------------------------------- /docs/configure/configuration_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/configure/configuration_basics.md -------------------------------------------------------------------------------- /docs/configure/credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/configure/credentials.md -------------------------------------------------------------------------------- /docs/configure/parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/configure/parameters.md -------------------------------------------------------------------------------- /docs/create/customise_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/create/customise_project.md -------------------------------------------------------------------------------- /docs/create/minimal_kedro_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/create/minimal_kedro_project.md -------------------------------------------------------------------------------- /docs/create/new_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/create/new_project.md -------------------------------------------------------------------------------- /docs/create/new_project_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/create/new_project_tools.md -------------------------------------------------------------------------------- /docs/create/starters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/create/starters.md -------------------------------------------------------------------------------- /docs/deploy/distributed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/distributed.md -------------------------------------------------------------------------------- /docs/deploy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/index.md -------------------------------------------------------------------------------- /docs/deploy/nodes_grouping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/nodes_grouping.md -------------------------------------------------------------------------------- /docs/deploy/package_a_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/package_a_project.md -------------------------------------------------------------------------------- /docs/deploy/single_machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/single_machine.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/airflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/airflow.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/amazon_emr_serverless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/amazon_emr_serverless.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/amazon_sagemaker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/amazon_sagemaker.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/argo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/argo.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/aws_batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/aws_batch.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/aws_step_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/aws_step_functions.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/azure.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/dagster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/dagster.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/dask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/dask.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/databricks/databricks_dbx_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/databricks/databricks_dbx_workflow.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/databricks/databricks_deployment_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/databricks/databricks_deployment_workflow.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/databricks/databricks_ide_databricks_asset_bundles_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/databricks/databricks_ide_databricks_asset_bundles_workflow.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/databricks/databricks_notebooks_development_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/databricks/databricks_notebooks_development_workflow.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/databricks/databricks_visualisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/databricks/databricks_visualisation.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/databricks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/databricks/index.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/kubeflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/kubeflow.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/prefect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/prefect.md -------------------------------------------------------------------------------- /docs/deploy/supported-platforms/vertexai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/deploy/supported-platforms/vertexai.md -------------------------------------------------------------------------------- /docs/develop/automated_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/develop/automated_testing.md -------------------------------------------------------------------------------- /docs/develop/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/develop/debugging.md -------------------------------------------------------------------------------- /docs/develop/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/develop/dependencies.md -------------------------------------------------------------------------------- /docs/develop/linting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/develop/linting.md -------------------------------------------------------------------------------- /docs/develop/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/develop/logging.md -------------------------------------------------------------------------------- /docs/develop/vibe_coding_with_mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/develop/vibe_coding_with_mcp.md -------------------------------------------------------------------------------- /docs/diagrams/installed-kedro-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/diagrams/installed-kedro-project.md -------------------------------------------------------------------------------- /docs/diagrams/kedro-ipython.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/diagrams/kedro-ipython.md -------------------------------------------------------------------------------- /docs/diagrams/kedro-no-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/diagrams/kedro-no-project.md -------------------------------------------------------------------------------- /docs/diagrams/kedro-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/diagrams/kedro-plugin.md -------------------------------------------------------------------------------- /docs/diagrams/kedro-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/diagrams/kedro-run.md -------------------------------------------------------------------------------- /docs/diagrams/kedro-with-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/diagrams/kedro-with-project.md -------------------------------------------------------------------------------- /docs/diagrams/python-m-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/diagrams/python-m-project.md -------------------------------------------------------------------------------- /docs/extend/common_use_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/extend/common_use_cases.md -------------------------------------------------------------------------------- /docs/extend/create_a_starter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/extend/create_a_starter.md -------------------------------------------------------------------------------- /docs/extend/hooks/common_use_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/extend/hooks/common_use_cases.md -------------------------------------------------------------------------------- /docs/extend/hooks/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/extend/hooks/examples.md -------------------------------------------------------------------------------- /docs/extend/hooks/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/extend/hooks/introduction.md -------------------------------------------------------------------------------- /docs/extend/how_to_create_a_custom_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/extend/how_to_create_a_custom_dataset.md -------------------------------------------------------------------------------- /docs/extend/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/extend/plugins.md -------------------------------------------------------------------------------- /docs/extend/session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/extend/session.md -------------------------------------------------------------------------------- /docs/getting-started/architecture_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/getting-started/architecture_overview.md -------------------------------------------------------------------------------- /docs/getting-started/commands_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/getting-started/commands_reference.md -------------------------------------------------------------------------------- /docs/getting-started/course.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/getting-started/course.md -------------------------------------------------------------------------------- /docs/getting-started/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/getting-started/faq.md -------------------------------------------------------------------------------- /docs/getting-started/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/getting-started/glossary.md -------------------------------------------------------------------------------- /docs/getting-started/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/getting-started/install.md -------------------------------------------------------------------------------- /docs/getting-started/kedro_concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/getting-started/kedro_concepts.md -------------------------------------------------------------------------------- /docs/ide/set_up_pycharm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/ide/set_up_pycharm.md -------------------------------------------------------------------------------- /docs/ide/set_up_vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/ide/set_up_vscode.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/integrations-and-plugins/deltalake_versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/deltalake_versioning.md -------------------------------------------------------------------------------- /docs/integrations-and-plugins/dvc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/dvc.md -------------------------------------------------------------------------------- /docs/integrations-and-plugins/great_expectations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/great_expectations.md -------------------------------------------------------------------------------- /docs/integrations-and-plugins/iceberg_versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/iceberg_versioning.md -------------------------------------------------------------------------------- /docs/integrations-and-plugins/marimo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/marimo.md -------------------------------------------------------------------------------- /docs/integrations-and-plugins/mlflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/mlflow.md -------------------------------------------------------------------------------- /docs/integrations-and-plugins/notebooks_and_ipython/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/notebooks_and_ipython/index.md -------------------------------------------------------------------------------- /docs/integrations-and-plugins/notebooks_and_ipython/kedro_and_notebooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/notebooks_and_ipython/kedro_and_notebooks.md -------------------------------------------------------------------------------- /docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/add_kedro_to_a_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/add_kedro_to_a_notebook.ipynb -------------------------------------------------------------------------------- /docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/add_kedro_to_a_notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/add_kedro_to_a_notebook.md -------------------------------------------------------------------------------- /docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/catalog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/catalog.yml -------------------------------------------------------------------------------- /docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/data/companies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/data/companies.csv -------------------------------------------------------------------------------- /docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/data/reviews.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/data/reviews.csv -------------------------------------------------------------------------------- /docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/data/shuttles.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/data/shuttles.xlsx -------------------------------------------------------------------------------- /docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/parameters.yml -------------------------------------------------------------------------------- /docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/params.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/notebooks_and_ipython/notebook-example/params.yml -------------------------------------------------------------------------------- /docs/integrations-and-plugins/pandera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/pandera.md -------------------------------------------------------------------------------- /docs/integrations-and-plugins/pyspark_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/integrations-and-plugins/pyspark_integration.md -------------------------------------------------------------------------------- /docs/javascript/deindex-old-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/javascript/deindex-old-docs.js -------------------------------------------------------------------------------- /docs/javascript/readthedocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/javascript/readthedocs.js -------------------------------------------------------------------------------- /docs/meta/images/KedroArchitecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/KedroArchitecture.drawio -------------------------------------------------------------------------------- /docs/meta/images/astronomer_cloud_deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/astronomer_cloud_deployment.png -------------------------------------------------------------------------------- /docs/meta/images/astronomer_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/astronomer_connected.png -------------------------------------------------------------------------------- /docs/meta/images/astronomer_new_deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/astronomer_new_deployment.png -------------------------------------------------------------------------------- /docs/meta/images/autoreload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/autoreload.gif -------------------------------------------------------------------------------- /docs/meta/images/aws_lambda_functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/aws_lambda_functions.png -------------------------------------------------------------------------------- /docs/meta/images/aws_step_functions_state_machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/aws_step_functions_state_machine.png -------------------------------------------------------------------------------- /docs/meta/images/aws_step_functions_state_machine_listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/aws_step_functions_state_machine_listing.png -------------------------------------------------------------------------------- /docs/meta/images/chart-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/chart-icon.png -------------------------------------------------------------------------------- /docs/meta/images/coffee-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/coffee-cup.png -------------------------------------------------------------------------------- /docs/meta/images/collapsible.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/collapsible.gif -------------------------------------------------------------------------------- /docs/meta/images/complete-mlflow-tracking-kedro-mlflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/complete-mlflow-tracking-kedro-mlflow.png -------------------------------------------------------------------------------- /docs/meta/images/cook_disjointed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/cook_disjointed.png -------------------------------------------------------------------------------- /docs/meta/images/cook_joined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/cook_joined.png -------------------------------------------------------------------------------- /docs/meta/images/cook_namespaced.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/cook_namespaced.gif -------------------------------------------------------------------------------- /docs/meta/images/cook_no_namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/cook_no_namespace.png -------------------------------------------------------------------------------- /docs/meta/images/cook_params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/cook_params.png -------------------------------------------------------------------------------- /docs/meta/images/dask_diagnostics_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/dask_diagnostics_dashboard.png -------------------------------------------------------------------------------- /docs/meta/images/data_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/data_layers.png -------------------------------------------------------------------------------- /docs/meta/images/data_validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/data_validation.png -------------------------------------------------------------------------------- /docs/meta/images/databricks-flow-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks-flow-chart.png -------------------------------------------------------------------------------- /docs/meta/images/databricks-job-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks-job-run.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_authenticate_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_authenticate_repo.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_cluster_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_cluster_edit.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_cluster_env_vars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_cluster_env_vars.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_cluster_id1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_cluster_id1.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_cluster_id2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_cluster_id2.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_conf_folder_creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_conf_folder_creation.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_configure_job_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_configure_job_cluster.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_configure_new_job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_configure_new_job.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_create_job_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_create_job_cluster.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_create_new_job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_create_new_job.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_edit_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_edit_file.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_finished_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_finished_notebook.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_job_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_job_status.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_new_repo_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_new_repo_popup.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_notebook_creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_notebook_creation.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_notebook_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_notebook_example.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_notebooks_workflow_finished_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_notebooks_workflow_finished_notebook.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_repo_creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_repo_creation.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_run_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_run_all.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_specify_github_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_specify_github_repo.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_telemetry_consent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_telemetry_consent.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_viz_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_viz_demo.png -------------------------------------------------------------------------------- /docs/meta/images/databricks_viz_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/databricks_viz_link.png -------------------------------------------------------------------------------- /docs/meta/images/deployment-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/deployment-diagram.png -------------------------------------------------------------------------------- /docs/meta/images/example_azure_keyvault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/example_azure_keyvault.png -------------------------------------------------------------------------------- /docs/meta/images/expand-plot-comparison-view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/expand-plot-comparison-view.gif -------------------------------------------------------------------------------- /docs/meta/images/experiment-tracking-compare-runs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/experiment-tracking-compare-runs.png -------------------------------------------------------------------------------- /docs/meta/images/experiment-tracking-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/experiment-tracking-folder.png -------------------------------------------------------------------------------- /docs/meta/images/experiment-tracking-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/experiment-tracking-icon.png -------------------------------------------------------------------------------- /docs/meta/images/experiment-tracking-metrics-comparison.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/experiment-tracking-metrics-comparison.gif -------------------------------------------------------------------------------- /docs/meta/images/experiment-tracking-plots-comparison-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/experiment-tracking-plots-comparison-expanded.png -------------------------------------------------------------------------------- /docs/meta/images/experiment-tracking-plots-comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/experiment-tracking-plots-comparison.png -------------------------------------------------------------------------------- /docs/meta/images/experiment-tracking-runs-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/experiment-tracking-runs-list.png -------------------------------------------------------------------------------- /docs/meta/images/experiment-tracking_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/experiment-tracking_demo.gif -------------------------------------------------------------------------------- /docs/meta/images/extra-mlflow-tracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/extra-mlflow-tracking.png -------------------------------------------------------------------------------- /docs/meta/images/final_conf_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/final_conf_folder.png -------------------------------------------------------------------------------- /docs/meta/images/find_databricks_host_and_username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/find_databricks_host_and_username.png -------------------------------------------------------------------------------- /docs/meta/images/focus_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/focus_mode.png -------------------------------------------------------------------------------- /docs/meta/images/icon-image-dataset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/icon-image-dataset.svg -------------------------------------------------------------------------------- /docs/meta/images/iris_measurements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/iris_measurements.png -------------------------------------------------------------------------------- /docs/meta/images/jupyter_ipython_debug_command.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/jupyter_ipython_debug_command.gif -------------------------------------------------------------------------------- /docs/meta/images/jupyter_ipython_load_node.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/jupyter_ipython_load_node.gif -------------------------------------------------------------------------------- /docs/meta/images/jupyter_ipython_pdb_command.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/jupyter_ipython_pdb_command.gif -------------------------------------------------------------------------------- /docs/meta/images/jupyter_new_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/jupyter_new_notebook.png -------------------------------------------------------------------------------- /docs/meta/images/jupyter_notebook_workflow_activating_tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/jupyter_notebook_workflow_activating_tags.png -------------------------------------------------------------------------------- /docs/meta/images/jupyter_notebook_workflow_tagging_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/jupyter_notebook_workflow_tagging_nodes.png -------------------------------------------------------------------------------- /docs/meta/images/jupyter_qtconsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/jupyter_qtconsole.png -------------------------------------------------------------------------------- /docs/meta/images/jupyter_select_kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/jupyter_select_kernel.png -------------------------------------------------------------------------------- /docs/meta/images/kedro-mlflow-registered-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro-mlflow-registered-model.png -------------------------------------------------------------------------------- /docs/meta/images/kedro-publish-share.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro-publish-share.gif -------------------------------------------------------------------------------- /docs/meta/images/kedro-session-creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro-session-creation.png -------------------------------------------------------------------------------- /docs/meta/images/kedro_airflow_dag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_airflow_dag.png -------------------------------------------------------------------------------- /docs/meta/images/kedro_airflow_dag_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_airflow_dag_run.png -------------------------------------------------------------------------------- /docs/meta/images/kedro_architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_architecture.jpg -------------------------------------------------------------------------------- /docs/meta/images/kedro_gitflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_gitflow.jpg -------------------------------------------------------------------------------- /docs/meta/images/kedro_graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_graphic.png -------------------------------------------------------------------------------- /docs/meta/images/kedro_icon_no-type_blackbg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_icon_no-type_blackbg.svg -------------------------------------------------------------------------------- /docs/meta/images/kedro_icon_no-type_whitebg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_icon_no-type_whitebg.svg -------------------------------------------------------------------------------- /docs/meta/images/kedro_icon_type_blackbg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_icon_type_blackbg.svg -------------------------------------------------------------------------------- /docs/meta/images/kedro_icon_type_whitebg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_icon_type_whitebg.svg -------------------------------------------------------------------------------- /docs/meta/images/kedro_run_lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_run_lifecycle.png -------------------------------------------------------------------------------- /docs/meta/images/kedro_viz_autoreload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_viz_autoreload.gif -------------------------------------------------------------------------------- /docs/meta/images/kedro_viz_expanding_namespace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_viz_expanding_namespace.gif -------------------------------------------------------------------------------- /docs/meta/images/kedro_viz_filters_tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_viz_filters_tags.png -------------------------------------------------------------------------------- /docs/meta/images/kedro_viz_switching_pipeline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/kedro_viz_switching_pipeline.gif -------------------------------------------------------------------------------- /docs/meta/images/mcp_general_guidance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/mcp_general_guidance.png -------------------------------------------------------------------------------- /docs/meta/images/mcp_migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/mcp_migration.png -------------------------------------------------------------------------------- /docs/meta/images/mcp_notebook_convertion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/mcp_notebook_convertion.png -------------------------------------------------------------------------------- /docs/meta/images/mlflow-artifact-preview-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/mlflow-artifact-preview-image.png -------------------------------------------------------------------------------- /docs/meta/images/mlflow-pickle-artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/mlflow-pickle-artifact.png -------------------------------------------------------------------------------- /docs/meta/images/mlflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/mlflow.png -------------------------------------------------------------------------------- /docs/meta/images/modular_ds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/modular_ds.gif -------------------------------------------------------------------------------- /docs/meta/images/moon-rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/moon-rocket.png -------------------------------------------------------------------------------- /docs/meta/images/namespaces_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/namespaces_collapsed.png -------------------------------------------------------------------------------- /docs/meta/images/namespaces_collapsed_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/namespaces_collapsed_all.png -------------------------------------------------------------------------------- /docs/meta/images/namespaces_uncollapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/namespaces_uncollapsed.png -------------------------------------------------------------------------------- /docs/meta/images/new_jupyter_browser_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/new_jupyter_browser_window.png -------------------------------------------------------------------------------- /docs/meta/images/new_jupyter_notebook_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/new_jupyter_notebook_view.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_error_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_error_logs.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_observability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_observability.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_show_metrics.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_show_metrics.gif -------------------------------------------------------------------------------- /docs/meta/images/pipeline_visualisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_visualisation.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_visualisation_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_visualisation_icon.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_visualisation_iris_starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_visualisation_iris_starter.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_visualisation_matplotlib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_visualisation_matplotlib.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_visualisation_matplotlib_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_visualisation_matplotlib_expand.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_visualisation_metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_visualisation_metrics.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_visualisation_plotly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_visualisation_plotly.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_visualisation_plotly_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_visualisation_plotly_1.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_visualisation_plotly_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_visualisation_plotly_expand.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_visualisation_plotly_expand_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_visualisation_plotly_expand_1.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_visualisation_tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_visualisation_tutorial.png -------------------------------------------------------------------------------- /docs/meta/images/pipeline_visualisation_with_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pipeline_visualisation_with_layers.png -------------------------------------------------------------------------------- /docs/meta/images/prefect_2_flow_deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/prefect_2_flow_deployment.png -------------------------------------------------------------------------------- /docs/meta/images/prefect_2_flow_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/prefect_2_flow_details.png -------------------------------------------------------------------------------- /docs/meta/images/prefect_flow_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/prefect_flow_details.png -------------------------------------------------------------------------------- /docs/meta/images/prefect_flows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/prefect_flows.png -------------------------------------------------------------------------------- /docs/meta/images/preview_datasets_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/preview_datasets_expanded.png -------------------------------------------------------------------------------- /docs/meta/images/preview_datasets_metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/preview_datasets_metadata.png -------------------------------------------------------------------------------- /docs/meta/images/project-tools-choices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/project-tools-choices.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_add_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_add_breakpoint.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_add_conda_env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_add_conda_env.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_add_interpreter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_add_interpreter.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_add_py_run_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_add_py_run_config.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_catalog_schema_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_catalog_schema_mapping.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_conf_run_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_conf_run_button.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_conf_run_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_conf_run_dropdown.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_debugger_break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_debugger_break.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_debugger_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_debugger_button.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_docker_interpreter_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_docker_interpreter_1.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_docker_interpreter_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_docker_interpreter_2.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_docker_interpreter_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_docker_interpreter_3.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_edit_confs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_edit_confs.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_edit_py_run_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_edit_py_run_config.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_edit_schema_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_edit_schema_mapping.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_ipython_starting_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_ipython_starting_script.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_ipython_working_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_ipython_working_example.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_mark_dir_as_sources_root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_mark_dir_as_sources_root.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_preferences.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_project_interpreter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_project_interpreter.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_remote_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_remote_run.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_select_conda_interpreter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_select_conda_interpreter.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_ssh_interpreter_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_ssh_interpreter_1.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_ssh_interpreter_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_ssh_interpreter_2.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_ssh_interpreter_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_ssh_interpreter_3.png -------------------------------------------------------------------------------- /docs/meta/images/pycharm_ssh_runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/pycharm_ssh_runner.png -------------------------------------------------------------------------------- /docs/meta/images/run_viz_in_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/run_viz_in_notebook.png -------------------------------------------------------------------------------- /docs/meta/images/simple_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/simple_pipeline.png -------------------------------------------------------------------------------- /docs/meta/images/slice_pipeline_kedro_viz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/slice_pipeline_kedro_viz.gif -------------------------------------------------------------------------------- /docs/meta/images/spark_delta_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/spark_delta_workflow.png -------------------------------------------------------------------------------- /docs/meta/images/spark_jobs_databricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/spark_jobs_databricks.png -------------------------------------------------------------------------------- /docs/meta/images/viz-vsc-nav-data-node.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/viz-vsc-nav-data-node.gif -------------------------------------------------------------------------------- /docs/meta/images/viz-vsc-nav-function-node.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/viz-vsc-nav-function-node.gif -------------------------------------------------------------------------------- /docs/meta/images/viz_collapse_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/viz_collapse_panel.png -------------------------------------------------------------------------------- /docs/meta/images/vscode_add_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_add_configuration.png -------------------------------------------------------------------------------- /docs/meta/images/vscode_autoreload_viz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_autoreload_viz.gif -------------------------------------------------------------------------------- /docs/meta/images/vscode_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_breakpoint.png -------------------------------------------------------------------------------- /docs/meta/images/vscode_debug_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_debug_button.png -------------------------------------------------------------------------------- /docs/meta/images/vscode_problems_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_problems_panel.png -------------------------------------------------------------------------------- /docs/meta/images/vscode_remote_debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_remote_debugger.png -------------------------------------------------------------------------------- /docs/meta/images/vscode_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_run.png -------------------------------------------------------------------------------- /docs/meta/images/vscode_run_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_run_debug.png -------------------------------------------------------------------------------- /docs/meta/images/vscode_set_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_set_breakpoint.png -------------------------------------------------------------------------------- /docs/meta/images/vscode_set_custom_path_using_command_palette.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_set_custom_path_using_command_palette.gif -------------------------------------------------------------------------------- /docs/meta/images/vscode_set_custom_path_using_settings_ui.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_set_custom_path_using_settings_ui.gif -------------------------------------------------------------------------------- /docs/meta/images/vscode_setup_interpreter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_setup_interpreter.png -------------------------------------------------------------------------------- /docs/meta/images/vscode_startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_startup.png -------------------------------------------------------------------------------- /docs/meta/images/vscode_toggle_viz_theme.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/meta/images/vscode_toggle_viz_theme.gif -------------------------------------------------------------------------------- /docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/overrides/partials/copyright-legal-socials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/overrides/partials/copyright-legal-socials.html -------------------------------------------------------------------------------- /docs/overrides/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/overrides/welcome.html -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/stylesheets/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/stylesheets/colors.css -------------------------------------------------------------------------------- /docs/stylesheets/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/stylesheets/footer.css -------------------------------------------------------------------------------- /docs/stylesheets/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/stylesheets/globals.css -------------------------------------------------------------------------------- /docs/stylesheets/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/stylesheets/themes.css -------------------------------------------------------------------------------- /docs/stylesheets/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/stylesheets/typography.css -------------------------------------------------------------------------------- /docs/stylesheets/welcome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/stylesheets/welcome.css -------------------------------------------------------------------------------- /docs/tutorials/add_another_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/tutorials/add_another_pipeline.md -------------------------------------------------------------------------------- /docs/tutorials/create_a_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/tutorials/create_a_pipeline.md -------------------------------------------------------------------------------- /docs/tutorials/notebooks_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/tutorials/notebooks_tutorial.md -------------------------------------------------------------------------------- /docs/tutorials/set_up_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/tutorials/set_up_data.md -------------------------------------------------------------------------------- /docs/tutorials/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/tutorials/settings.md -------------------------------------------------------------------------------- /docs/tutorials/spaceflights_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/tutorials/spaceflights_tutorial.md -------------------------------------------------------------------------------- /docs/tutorials/spaceflights_tutorial_faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/tutorials/spaceflights_tutorial_faqs.md -------------------------------------------------------------------------------- /docs/tutorials/test_a_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/tutorials/test_a_project.md -------------------------------------------------------------------------------- /docs/tutorials/tutorial_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/docs/tutorials/tutorial_template.md -------------------------------------------------------------------------------- /features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/environment.py -------------------------------------------------------------------------------- /features/info.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/info.feature -------------------------------------------------------------------------------- /features/ipython.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/ipython.feature -------------------------------------------------------------------------------- /features/jupyter.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/jupyter.feature -------------------------------------------------------------------------------- /features/load_context.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/load_context.feature -------------------------------------------------------------------------------- /features/load_node.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/load_node.feature -------------------------------------------------------------------------------- /features/new.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/new.feature -------------------------------------------------------------------------------- /features/package.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/package.feature -------------------------------------------------------------------------------- /features/run.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/run.feature -------------------------------------------------------------------------------- /features/starter.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/starter.feature -------------------------------------------------------------------------------- /features/steps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/steps/cli_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/steps/cli_steps.py -------------------------------------------------------------------------------- /features/steps/e2e_test_catalog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/steps/e2e_test_catalog.yml -------------------------------------------------------------------------------- /features/steps/e2e_test_cli_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/steps/e2e_test_cli_config.yml -------------------------------------------------------------------------------- /features/steps/sh_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/steps/sh_run.py -------------------------------------------------------------------------------- /features/steps/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/steps/util.py -------------------------------------------------------------------------------- /features/test_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_plugin/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_plugin/plugin.py -------------------------------------------------------------------------------- /features/test_plugin/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_plugin/pyproject.toml -------------------------------------------------------------------------------- /features/test_starter/cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/cookiecutter.json -------------------------------------------------------------------------------- /features/test_starter/prompts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/prompts.yml -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/.gitignore -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/.telemetry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/.telemetry -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/README.md -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/conf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/conf/README.md -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/conf/base/catalog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/conf/base/catalog.yml -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/conf/base/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/conf/base/parameters.yml -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/conf/local/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/conf/logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/conf/logging.yml -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/data/01_raw/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/data/01_raw/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/data/01_raw/iris.csv -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/data/02_intermediate/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/data/03_primary/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/data/04_feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/data/05_model_input/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/data/06_models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/data/07_model_output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/data/08_reporting/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/docs/source/conf.py -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/docs/source/index.rst -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/ipython_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/ipython_script.py -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/notebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/pyproject.toml -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/requirements.txt -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/__init__.py: -------------------------------------------------------------------------------- 1 | """{{ cookiecutter.project_name }} 2 | """ 3 | 4 | __version__ = "0.1" 5 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/__main__.py -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipeline_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipeline_registry.py -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_engineering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_engineering/README.md -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_engineering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_engineering/__init__.py -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_engineering/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_engineering/nodes.py -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_engineering/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_engineering/pipeline.py -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_science/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_science/README.md -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_science/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_science/__init__.py -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_science/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_science/nodes.py -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_science/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/data_science/pipeline.py -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/settings.py -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/tests/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /features/test_starter/{{ cookiecutter.repo_name }}/tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/test_starter/{{ cookiecutter.repo_name }}/tests/test_run.py -------------------------------------------------------------------------------- /features/tools.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/tools.feature -------------------------------------------------------------------------------- /features/version.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/version.feature -------------------------------------------------------------------------------- /features/windows_reqs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/features/windows_reqs.txt -------------------------------------------------------------------------------- /kedro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/__init__.py -------------------------------------------------------------------------------- /kedro/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/__main__.py -------------------------------------------------------------------------------- /kedro/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/config/__init__.py -------------------------------------------------------------------------------- /kedro/config/abstract_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/config/abstract_config.py -------------------------------------------------------------------------------- /kedro/config/omegaconf_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/config/omegaconf_config.py -------------------------------------------------------------------------------- /kedro/framework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/__init__.py -------------------------------------------------------------------------------- /kedro/framework/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/cli/__init__.py -------------------------------------------------------------------------------- /kedro/framework/cli/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/cli/catalog.py -------------------------------------------------------------------------------- /kedro/framework/cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/cli/cli.py -------------------------------------------------------------------------------- /kedro/framework/cli/hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/cli/hooks/__init__.py -------------------------------------------------------------------------------- /kedro/framework/cli/hooks/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/cli/hooks/manager.py -------------------------------------------------------------------------------- /kedro/framework/cli/hooks/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/cli/hooks/markers.py -------------------------------------------------------------------------------- /kedro/framework/cli/hooks/specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/cli/hooks/specs.py -------------------------------------------------------------------------------- /kedro/framework/cli/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/cli/jupyter.py -------------------------------------------------------------------------------- /kedro/framework/cli/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/cli/pipeline.py -------------------------------------------------------------------------------- /kedro/framework/cli/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/cli/project.py -------------------------------------------------------------------------------- /kedro/framework/cli/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/cli/registry.py -------------------------------------------------------------------------------- /kedro/framework/cli/starters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/cli/starters.py -------------------------------------------------------------------------------- /kedro/framework/cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/cli/utils.py -------------------------------------------------------------------------------- /kedro/framework/context/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/context/__init__.py -------------------------------------------------------------------------------- /kedro/framework/context/catalog_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/context/catalog_mixins.py -------------------------------------------------------------------------------- /kedro/framework/context/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/context/context.py -------------------------------------------------------------------------------- /kedro/framework/hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/hooks/__init__.py -------------------------------------------------------------------------------- /kedro/framework/hooks/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/hooks/manager.py -------------------------------------------------------------------------------- /kedro/framework/hooks/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/hooks/markers.py -------------------------------------------------------------------------------- /kedro/framework/hooks/specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/hooks/specs.py -------------------------------------------------------------------------------- /kedro/framework/project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/project/__init__.py -------------------------------------------------------------------------------- /kedro/framework/project/default_logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/project/default_logging.yml -------------------------------------------------------------------------------- /kedro/framework/project/rich_logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/project/rich_logging.yml -------------------------------------------------------------------------------- /kedro/framework/session/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/session/__init__.py -------------------------------------------------------------------------------- /kedro/framework/session/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/session/session.py -------------------------------------------------------------------------------- /kedro/framework/session/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/session/store.py -------------------------------------------------------------------------------- /kedro/framework/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/framework/startup.py -------------------------------------------------------------------------------- /kedro/io/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/io/__init__.py -------------------------------------------------------------------------------- /kedro/io/cached_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/io/cached_dataset.py -------------------------------------------------------------------------------- /kedro/io/catalog_config_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/io/catalog_config_resolver.py -------------------------------------------------------------------------------- /kedro/io/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/io/core.py -------------------------------------------------------------------------------- /kedro/io/data_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/io/data_catalog.py -------------------------------------------------------------------------------- /kedro/io/memory_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/io/memory_dataset.py -------------------------------------------------------------------------------- /kedro/io/shared_memory_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/io/shared_memory_dataset.py -------------------------------------------------------------------------------- /kedro/ipython/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/ipython/__init__.py -------------------------------------------------------------------------------- /kedro/ipython/logo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/ipython/logo-32x32.png -------------------------------------------------------------------------------- /kedro/ipython/logo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/ipython/logo-64x64.png -------------------------------------------------------------------------------- /kedro/ipython/logo-svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/ipython/logo-svg.svg -------------------------------------------------------------------------------- /kedro/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/logging.py -------------------------------------------------------------------------------- /kedro/pipeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/pipeline/__init__.py -------------------------------------------------------------------------------- /kedro/pipeline/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/pipeline/node.py -------------------------------------------------------------------------------- /kedro/pipeline/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/pipeline/pipeline.py -------------------------------------------------------------------------------- /kedro/pipeline/transcoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/pipeline/transcoding.py -------------------------------------------------------------------------------- /kedro/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. The kedro package uses inline types. 2 | -------------------------------------------------------------------------------- /kedro/runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/runner/__init__.py -------------------------------------------------------------------------------- /kedro/runner/parallel_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/runner/parallel_runner.py -------------------------------------------------------------------------------- /kedro/runner/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/runner/runner.py -------------------------------------------------------------------------------- /kedro/runner/sequential_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/runner/sequential_runner.py -------------------------------------------------------------------------------- /kedro/runner/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/runner/task.py -------------------------------------------------------------------------------- /kedro/runner/thread_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/runner/thread_runner.py -------------------------------------------------------------------------------- /kedro/templates/pipeline/cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/pipeline/cookiecutter.json -------------------------------------------------------------------------------- /kedro/templates/pipeline/{{ cookiecutter.pipeline_name }}/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/pipeline/{{ cookiecutter.pipeline_name }}/__init__.py -------------------------------------------------------------------------------- /kedro/templates/pipeline/{{ cookiecutter.pipeline_name }}/config/parameters_{{ cookiecutter.pipeline_name }}.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/pipeline/{{ cookiecutter.pipeline_name }}/config/parameters_{{ cookiecutter.pipeline_name }}.yml -------------------------------------------------------------------------------- /kedro/templates/pipeline/{{ cookiecutter.pipeline_name }}/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/pipeline/{{ cookiecutter.pipeline_name }}/nodes.py -------------------------------------------------------------------------------- /kedro/templates/pipeline/{{ cookiecutter.pipeline_name }}/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/pipeline/{{ cookiecutter.pipeline_name }}/pipeline.py -------------------------------------------------------------------------------- /kedro/templates/pipeline/{{ cookiecutter.pipeline_name }}/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/pipeline/{{ cookiecutter.pipeline_name }}/tests/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/pipeline/{{ cookiecutter.pipeline_name }}/tests/test_pipeline.py -------------------------------------------------------------------------------- /kedro/templates/project/cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/cookiecutter.json -------------------------------------------------------------------------------- /kedro/templates/project/hooks/post_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/hooks/post_gen_project.py -------------------------------------------------------------------------------- /kedro/templates/project/hooks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/hooks/utils.py -------------------------------------------------------------------------------- /kedro/templates/project/prompts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/prompts.yml -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/.gitignore -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/README.md -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/conf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/conf/README.md -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/conf/base/catalog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/conf/base/catalog.yml -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/conf/base/parameters.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/conf/local/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/conf/local/credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/conf/local/credentials.yml -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/conf/logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/conf/logging.yml -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/data/01_raw/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/data/02_intermediate/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/data/03_primary/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/data/04_feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/data/05_model_input/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/data/06_models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/data/07_model_output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/data/08_reporting/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/docs/source/conf.py -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/docs/source/index.rst -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/notebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/pyproject.toml -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/requirements.txt -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/__init__.py: -------------------------------------------------------------------------------- 1 | """{{ cookiecutter.project_name }} 2 | """ 3 | 4 | __version__ = "0.1" 5 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/__main__.py -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipeline_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipeline_registry.py -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/src/{{ cookiecutter.python_package }}/settings.py -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/tests/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro/templates/project/{{ cookiecutter.repo_name }}/tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/templates/project/{{ cookiecutter.repo_name }}/tests/test_run.py -------------------------------------------------------------------------------- /kedro/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro/utils.py -------------------------------------------------------------------------------- /kedro_benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro_benchmarks/README.md -------------------------------------------------------------------------------- /kedro_benchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kedro_benchmarks/benchmark_datacatalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro_benchmarks/benchmark_datacatalog.py -------------------------------------------------------------------------------- /kedro_benchmarks/benchmark_ocl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro_benchmarks/benchmark_ocl.py -------------------------------------------------------------------------------- /kedro_benchmarks/benchmark_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro_benchmarks/benchmark_runner.py -------------------------------------------------------------------------------- /kedro_technical_charter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/kedro_technical_charter.pdf -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/pyproject.toml -------------------------------------------------------------------------------- /static/img/kedro-catalog-0.19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/static/img/kedro-catalog-0.19.json -------------------------------------------------------------------------------- /static/img/kedro_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/static/img/kedro_banner.png -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/config/test_omegaconf_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/config/test_omegaconf_config.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/framework/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/framework/cli/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/cli/conftest.py -------------------------------------------------------------------------------- /tests/framework/cli/hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/framework/cli/hooks/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/cli/hooks/test_manager.py -------------------------------------------------------------------------------- /tests/framework/cli/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/framework/cli/pipeline/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/cli/pipeline/conftest.py -------------------------------------------------------------------------------- /tests/framework/cli/pipeline/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/cli/pipeline/test_pipeline.py -------------------------------------------------------------------------------- /tests/framework/cli/test_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/cli/test_catalog.py -------------------------------------------------------------------------------- /tests/framework/cli/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/cli/test_cli.py -------------------------------------------------------------------------------- /tests/framework/cli/test_cli_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/cli/test_cli_hooks.py -------------------------------------------------------------------------------- /tests/framework/cli/test_jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/cli/test_jupyter.py -------------------------------------------------------------------------------- /tests/framework/cli/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/cli/test_project.py -------------------------------------------------------------------------------- /tests/framework/cli/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/cli/test_registry.py -------------------------------------------------------------------------------- /tests/framework/cli/test_starters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/cli/test_starters.py -------------------------------------------------------------------------------- /tests/framework/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/conftest.py -------------------------------------------------------------------------------- /tests/framework/context/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/framework/context/test_catalog_commands_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/context/test_catalog_commands_mixin.py -------------------------------------------------------------------------------- /tests/framework/context/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/context/test_context.py -------------------------------------------------------------------------------- /tests/framework/hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/framework/hooks/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/hooks/test_manager.py -------------------------------------------------------------------------------- /tests/framework/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/framework/project/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/project/test_logging.py -------------------------------------------------------------------------------- /tests/framework/project/test_pipeline_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/project/test_pipeline_discovery.py -------------------------------------------------------------------------------- /tests/framework/project/test_pipeline_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/project/test_pipeline_registry.py -------------------------------------------------------------------------------- /tests/framework/project/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/project/test_settings.py -------------------------------------------------------------------------------- /tests/framework/session/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/framework/session/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/session/conftest.py -------------------------------------------------------------------------------- /tests/framework/session/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/session/test_session.py -------------------------------------------------------------------------------- /tests/framework/session/test_session_extension_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/session/test_session_extension_hooks.py -------------------------------------------------------------------------------- /tests/framework/session/test_session_hook_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/session/test_session_hook_manager.py -------------------------------------------------------------------------------- /tests/framework/session/test_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/session/test_store.py -------------------------------------------------------------------------------- /tests/framework/test_startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/framework/test_startup.py -------------------------------------------------------------------------------- /tests/io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/io/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/io/conftest.py -------------------------------------------------------------------------------- /tests/io/test_cached_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/io/test_cached_dataset.py -------------------------------------------------------------------------------- /tests/io/test_catalog_config_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/io/test_catalog_config_resolver.py -------------------------------------------------------------------------------- /tests/io/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/io/test_core.py -------------------------------------------------------------------------------- /tests/io/test_data_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/io/test_data_catalog.py -------------------------------------------------------------------------------- /tests/io/test_memory_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/io/test_memory_dataset.py -------------------------------------------------------------------------------- /tests/io/test_shared_memory_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/io/test_shared_memory_dataset.py -------------------------------------------------------------------------------- /tests/ipython/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ipython/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/ipython/conftest.py -------------------------------------------------------------------------------- /tests/ipython/dummy_function_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/ipython/dummy_function_fixtures.py -------------------------------------------------------------------------------- /tests/ipython/dummy_multiline_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/ipython/dummy_multiline_fixtures.py -------------------------------------------------------------------------------- /tests/ipython/test_ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/ipython/test_ipython.py -------------------------------------------------------------------------------- /tests/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pipeline/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/pipeline/test_node.py -------------------------------------------------------------------------------- /tests/pipeline/test_node_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/pipeline/test_node_run.py -------------------------------------------------------------------------------- /tests/pipeline/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/pipeline/test_pipeline.py -------------------------------------------------------------------------------- /tests/pipeline/test_pipeline_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/pipeline/test_pipeline_integration.py -------------------------------------------------------------------------------- /tests/pipeline/test_pipeline_namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/pipeline/test_pipeline_namespaces.py -------------------------------------------------------------------------------- /tests/pipeline/test_pipeline_namespacing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/pipeline/test_pipeline_namespacing.py -------------------------------------------------------------------------------- /tests/pipeline/test_pipeline_with_transcoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/pipeline/test_pipeline_with_transcoding.py -------------------------------------------------------------------------------- /tests/runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/runner/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/runner/conftest.py -------------------------------------------------------------------------------- /tests/runner/test_only_missing_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/runner/test_only_missing_outputs.py -------------------------------------------------------------------------------- /tests/runner/test_parallel_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/runner/test_parallel_runner.py -------------------------------------------------------------------------------- /tests/runner/test_resume_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/runner/test_resume_logic.py -------------------------------------------------------------------------------- /tests/runner/test_run_generator_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/runner/test_run_generator_node.py -------------------------------------------------------------------------------- /tests/runner/test_run_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/runner/test_run_validation.py -------------------------------------------------------------------------------- /tests/runner/test_sequential_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/runner/test_sequential_runner.py -------------------------------------------------------------------------------- /tests/runner/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/runner/test_task.py -------------------------------------------------------------------------------- /tests/runner/test_thread_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/runner/test_thread_runner.py -------------------------------------------------------------------------------- /tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/test_import.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/databricks_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tools/databricks_build.py -------------------------------------------------------------------------------- /tools/github_actions/attempt_merge_pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tools/github_actions/attempt_merge_pr.sh -------------------------------------------------------------------------------- /tools/github_actions/extract_release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tools/github_actions/extract_release_notes.py -------------------------------------------------------------------------------- /tools/github_actions/github_actions_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tools/github_actions/github_actions_release.py -------------------------------------------------------------------------------- /tools/github_actions/merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tools/github_actions/merge.sh -------------------------------------------------------------------------------- /tools/print_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kedro-org/kedro/HEAD/tools/print_env.sh --------------------------------------------------------------------------------