Ashley Kent
Marvin
0 10 1 * *
prefect deploy ./path/to/flow.py:my_flow \ --name monthly-10am \ --cron "0 10 1 * *" \ --timezone "America/New_York"
--timezone
from prefect import flow from prefect.schedules import Cron @flow def my_flow(): ... if __name__ == "__main__": my_flow.deploy( name="monthly-10am", work_pool_name="my-pool", schedule=Cron("0 10 1 * *", timezone="America/New_York"), )
Bring your towel and join one of the fastest growing data communities. Welcome to our second-generation open source orchestration platform, a completely rethought approach to dataflow automation.