python
import plan
my_plan = plan.Plan(name="My Plan", description="This is my plan", tasks=[task1, task2, task3])
python
class MyTask(plan.Task):
def run(self):
# ...
python
my_plan = plan.Plan(name="My Plan", description="This is my plan", tasks=[task1, task2])
my_plan.schedule.every().day.at("08:00").do(my_plan.run)
my_plan.schedule.run_all()