This repository has been archived by the owner on Mar 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from quantumblacklabs/update-0.17.0
Update for Kedro 0.17.0
- Loading branch information
Showing
26 changed files
with
459 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,121 @@ | ||
# What is `kedro-exercises/spaceflight`? | ||
# kedro_tutorial | ||
|
||
This repo contains exercise code to help you learn how to use [Kedro](https://github.com/quantumblacklabs/kedro) 0.16.6 using spaceflight tutorial. | ||
## Overview | ||
|
||
You are supposed to create Kedro pipelines by writing code in the following Python files: | ||
- `src/kedro_tutorial/pipelines/data_engineering/pipeline.py` | ||
- `src/kedro_tutorial/pipelines/data_science/pipeline.py` | ||
- `src/kedro_tutorial/pipeline.py` | ||
This is your new Kedro project, which was generated using `Kedro 0.17.0`, with the completed version of the [Space Flights tutorial](https://kedro.readthedocs.io/en/stable/03_tutorial/01_spaceflights_tutorial.html) and the data necessary to run the project. | ||
|
||
The complete code can be found in `/kedro-tutorial` directory. | ||
Take a look at the [Kedro documentation](https://kedro.readthedocs.io) to get started. | ||
|
||
## Rules and guidelines | ||
|
||
In order to get the best out of the template: | ||
|
||
* Don't remove any lines from the `.gitignore` file we provide | ||
* Make sure your results can be reproduced by following a [data engineering convention](https://kedro.readthedocs.io/en/stable/11_faq/01_faq.html#what-is-data-engineering-convention) | ||
* Don't commit data to your repository | ||
* Don't commit any credentials or your local configuration to your repository. Keep all your credentials and local configuration in `conf/local/` | ||
|
||
## How to install dependencies | ||
|
||
Declare any dependencies in `src/requirements.txt` for `pip` installation and `src/environment.yml` for `conda` installation. | ||
|
||
To install them, run: | ||
|
||
``` | ||
kedro install | ||
``` | ||
|
||
## How to run Kedro | ||
|
||
You can run your Kedro project with: | ||
|
||
``` | ||
kedro run | ||
``` | ||
|
||
## How to test your Kedro project | ||
|
||
Have a look at the file `src/tests/test_run.py` for instructions on how to write your tests. You can run your tests as follows: | ||
|
||
``` | ||
kedro test | ||
``` | ||
|
||
To configure the coverage threshold, look at the `.coveragerc` file. | ||
|
||
|
||
## Project dependencies | ||
|
||
To generate or update the dependency requirements for your project: | ||
|
||
``` | ||
kedro build-reqs | ||
``` | ||
|
||
This will copy the contents of `src/requirements.txt` into a new file `src/requirements.in` which will be used as the source for [`pip-compile`](https://github.com/jazzband/pip-tools#example-usage-for-pip-compile). You can see the output of the resolution by opening `src/requirements.txt`. | ||
|
||
After this, if you'd like to update your project requirements, please update `src/requirements.in` and re-run `kedro build-reqs`. | ||
|
||
[Further information about project dependencies](https://kedro.readthedocs.io/en/stable/04_kedro_project_setup/01_dependencies.html#project-specific-dependencies) | ||
|
||
## How to work with Kedro and notebooks | ||
|
||
> Note: Using `kedro jupyter` or `kedro ipython` to run your notebook provides these variables in scope: `context`, `catalog`, and `startup_error`. | ||
### Jupyter | ||
To use Jupyter notebooks in your Kedro project, you need to install Jupyter: | ||
|
||
``` | ||
pip install jupyter | ||
``` | ||
|
||
After installing Jupyter, you can start a local notebook server: | ||
|
||
``` | ||
kedro jupyter notebook | ||
``` | ||
|
||
### JupyterLab | ||
To use JupyterLab, you need to install it: | ||
|
||
``` | ||
pip install jupyterlab | ||
``` | ||
|
||
You can also start JupyterLab: | ||
|
||
``` | ||
kedro jupyter lab | ||
``` | ||
|
||
### IPython | ||
And if you want to run an IPython session: | ||
|
||
``` | ||
kedro ipython | ||
``` | ||
|
||
### How to convert notebook cells to nodes in a Kedro project | ||
You can move notebook code over into a Kedro project structure using a mixture of [cell tagging](https://jupyter-notebook.readthedocs.io/en/stable/changelog.html#cell-tags) and Kedro CLI commands. | ||
|
||
By adding the `node` tag to a cell and running the command below, the cell's source code will be copied over to a Python file within `src/<package_name>/nodes/`: | ||
|
||
``` | ||
kedro jupyter convert <filepath_to_my_notebook> | ||
``` | ||
> *Note:* The name of the Python file matches the name of the original notebook. | ||
Alternatively, you may want to transform all your notebooks in one go. Run the following command to convert all notebook files found in the project root directory and under any of its sub-folders: | ||
|
||
``` | ||
kedro jupyter convert --all | ||
``` | ||
|
||
### How to ignore notebook output cells in `git` | ||
To automatically strip out all output cell contents before committing to `git`, you can run `kedro activate-nbstripout`. This will add a hook in `.git/config` which will run `nbstripout` before anything is committed to `git`. | ||
|
||
> *Note:* Your output cells will be retained locally. | ||
## Package your Kedro project | ||
|
||
[Further information about building project documentation and packaging your project](https://kedro.readthedocs.io/en/stable/03_tutorial/05_package_a_project.html) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[tool.kedro] | ||
package_name = "kedro_tutorial" | ||
project_name = "kedro_tutorial" | ||
project_version = "0.17.0" | ||
|
||
[tool.isort] | ||
multi_line_output = 3 | ||
include_trailing_comma = true | ||
force_grid_wrap = 0 | ||
use_parentheses = true | ||
line_length = 88 | ||
known_third_party = "kedro" | ||
|
||
[tool.pytest.ini_options] | ||
addopts = """ | ||
--cov-report term-missing \ | ||
--cov src/kedro_tutorial -ra""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[tool:pytest] | ||
addopts=--cov-report term-missing | ||
--cov src/kedro_tutorial -ra | ||
[flake8] | ||
max-line-length=88 | ||
extend-ignore=E203 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.