Flask blueprints

Created: Apr 7 2022, 20:33 UTC
Last modified: Dec 25 2024, 07:50 UTC

Part of my Flask series.

Blueprints seem to be a way to compartmentalize an app into logical pieces. It seems to be a way of subdividing an app into sub-apps.

Each blueprint (subapp) can have

  • a set of URLs that it handles.
  • its own templates
  • its own static files

No backlinks