-
Notifications
You must be signed in to change notification settings - Fork 177
Closed
Labels
Description
Is your feature request related to a problem? Please describe.
I want to be able to use materializers to create simple ETLs of just moving data from one place to another.
Describe the solution you'd like
A little odd but a good use-case. Specifically, I want something like this:
dr = driver.Builder().build() # empty driver
dr.materialize(
to.csv(
id="save_some_input_to_csv",
dependencies=["some_input"]),
inputs={
"some_input" : SOME_DATAFRAME
}
),This should form a two-node DAG.
Describe alternatives you've considered
Just writing a function to do this, or doing it outside of Hamilton.
Reactions are currently unavailable