I understand that Flask has the int, float and path converters, but the application we're developing has more complex patterns in its URLs.
Is there a way we can use regular expressions, as in Django?
|
I understand that Flask has the int, float and path converters, but the application we're developing has more complex patterns in its URLs. Is there a way we can use regular expressions, as in Django?
| |||
|
feedback
|
|
Even though Armin beat me to the punch with an accepted answer I thought I'd show an abbreviated example of how I implemented a regex matcher in Flask just in case anyone wants a working example of how this could be done.
this URL should return with 200: http://localhost:5000/abc0-foo/ this URL should will return with 404: http://localhost:5000/abcd-foo/ | |||
|
feedback
|
|
You can hook in custom converters that match for arbitrary expressions: http://werkzeug.pocoo.org/docs/routing/#custom-converters | |||
|
feedback
|