Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waylonwalker/kedro-diff
quickly diff kedro history
https://github.com/waylonwalker/kedro-diff
data-science diff kedro kedro-hook kedro-plugin python
Last synced: about 1 month ago
JSON representation
quickly diff kedro history
- Host: GitHub
- URL: https://github.com/waylonwalker/kedro-diff
- Owner: WaylonWalker
- License: mit
- Created: 2021-04-02T01:25:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-10T07:13:37.000Z (6 months ago)
- Last Synced: 2024-10-10T22:41:22.877Z (2 months ago)
- Topics: data-science, diff, kedro, kedro-hook, kedro-plugin, python
- Language: Python
- Homepage:
- Size: 84 KB
- Stars: 10
- Watchers: 5
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kedro-diff
`kedro-diff` aims to be a familiar interface into comparing two points in
history. Git diffs are fantastic tools but often are too granular to see what
has changed inside the pipeline. `kedro-diff` aims to be a familiar tool at a
higher level so we can see changes to nodes (names, inputs, outputs, tags).## Installation
``` bash
pip install kedro-diff
```## Example
``` diff
kedro diff --stat develop..master
M __default__ | 6 ++++-
M data_science | 3 +++
M data_engineering | 3 ++-
?? new_pipeline4 pipelines changed, 5 insertions(+), 4 deletions(-)
```## Usage
``` diff
# diff develop into master
kedro diff develop..masterkedro diff develop master
# diff current state with main
kedro diff main# diff current state with main
kedro diff ..main# comparing pipelines from two branches
kedro diff master new_branch data_science
```## More examples
``` diff
kedro diff develop..master
╭──────────────────────────────────────────────────────────────────────────────╮
│ modified: data_engineering │
╰──────────────────────────────────────────────────────────────────────────────╯
+ strip_whitespace
+ lowercase_columns
+ get_trains
- get_tains
╭──────────────────────────────────────────────────────────────────────────────╮
│ modified: data_science │
╰──────────────────────────────────────────────────────────────────────────────╯
+ split_data
```## Roadmap
### 1.0.0
- [x] commit parser
- [x] get `pipeline.to_json()` for `__default__` for two different commits
- [x] get `pipeline.to_json()` for all pipelines for two different commits
- [x] --stat compares the number of nodes added or dropped in `__default__`
- [x] --stat compares the number of nodes added or dropped in all pipelines
- [x] --stat compares attribute changes (inputs, outputs, tags) in all pipelines
- [x] compare input names
- [x] compare output names
- [ ] speed up getting repeat pipelines from the same commit (no need to reaload a new session)
- [ ] speed up getting repeat commits by checking commit hash (reuse existing json)
- [ ] minimize untested code### 2.0.0
_super-size `pipeline.to_json()`_
- [x] compare all attributes on a node ( not just inputs, outputs, tags)
- [ ] allow users to specify custom to_json method
- [ ] function names
- [ ] function hashes
- [ ] catalog _filepath
- [ ] catalog _sql## Testing
This project strives for 100% test coverage where it makes sense. Other kedro
plugins I have created have suffered development speed by the complexity of
fully testing on a full kedro project. There are so many pieces to get into
place that it becomes difficult to test accross multiple versions of kedro or
keep the tests working as kedro changes. Minimal functionality will be placed
into modules that require a kedro full kedro project in place to work.