Skip to content

Instantly share code, notes, and snippets.

@khuyentran1401
Last active November 6, 2021 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khuyentran1401/b04638b958d54e55d16d8a6a16b5b414 to your computer and use it in GitHub Desktop.
Save khuyentran1401/b04638b958d54e55d16d8a6a16b5b414 to your computer and use it in GitHub Desktop.
from prefect import Flow
from prefect.tasks.prefect import StartFlowRun
data_engineering_flow = StartFlowRun(flow_name="data-engineer",
project_name='Iris Project',
wait=True)
data_science_flow = StartFlowRun(flow_name="data-science",
project_name='Iris Project',
wait=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment