Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

Changes visualize driver functions to return graphviz object #286

Merged
merged 2 commits into from
Jan 27, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/hello_world/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ File organization:
* `my_functions.py` houses the logic that we want to compute. Note how the functions are named, and what input
parameters they require. That is how we create a DAG modeling the dataflow we want to happen.
* `my_script.py` houses how to get Hamilton to create the DAG and exercise it with some inputs.
* `my_notebook_script.py` houses how one might iterate in a notebook environment and provide a way to inline define Hamilton
* `my_notebook.ipynb` houses how one might iterate in a notebook environment and provide a way to inline define Hamilton
functions and add them to the DAG constructed. To be clear, it is not used by `my_script.py`, but showing an alternate path
to running things.
to running/developing things.

To run things:
```bash
Expand Down
Loading