Completed
Intro
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Creating Extensible Workflows with Off-Label Use of Python
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 About me
- 3 What is a workflow?
- 4 Workflows show up all over the place
- 5 Example: Processing Uploaded Images
- 6 Workflow is defined by a task graph
- 7 Workflow system design
- 8 Workflow for software builds
- 9 Design goals
- 10 Task API design challenges
- 11 Python to the rescue!
- 12 Building the rule graph
- 13 Static validation
- 14 Type annotations provide
- 15 Why coroutines?
- 16 Coroutines are powerful
- 17 Coroutines can express concurrency
- 18 Coroutines help avoid side effects
- 19 Coroutines provide natural control points for
- 20 Summary