Skip to content

Instantly share code, notes, and snippets.

@elijahbenizzy
Created October 24, 2023 02:21
Show Gist options
  • Save elijahbenizzy/b07deea49f6b22d197f3f4a5261097cf to your computer and use it in GitHub Desktop.
Save elijahbenizzy/b07deea49f6b22d197f3f4a5261097cf to your computer and use it in GitHub Desktop.
Materializer -- basic example
dr = driver.Driver({}, ...)
dr.materialize(
from_.csv(
target="node_to_load_to",
path="./input_data.csv",
),
to.csv(
id="data_saving_node",
dependencies=["col_1", "col_2", "col_"],
path="./path.csv"),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment