Module 05 ยท HTTP & Flask โ Lesson 4 of 4 ยท ~8 min
Dynamic routes
Routes with a variable in the path
/walkers returns everyone. But the iOS app also needs one specific walker: /walkers/w_1. Flask lets you capture part of the path as a variable with <angle_brackets> โ whatever the client puts there gets passed into your function as an argument with that exact name.