Skip to content

CodingShower

  • Home
  • About
Skip to content

CodingShower

All Things Software

Tag: flask

Profiling Python Flask Web Apps with Werkzeug Middleware Application Profiler

Posted on June 18, 2022June 19, 2022 by Rick

There will be times when one of your Flask application routes will slow down and you will want to find out exactly which parts in the request flow consume the most amount of time. One could use time.time() to measure the elapsed time between two points in the codebase but that still doesn’t tell us […]

0