DEV Community

Discussion on: Flask Tutorial - The Interactive way, Ask Me Anything for three hours

Collapse
 
uithemes profile image
ui-themes

Cool idea. What are blueprints? When is recommended to use BP.
Ty!

Collapse
 
sm0ke profile image
Sm0ke • Edited

Blueprints are basically modules, similar to apps in Django.
Once a project is getting bigger, the files tend to become huge and not so easy to handle.
Using Blueprints, we can split the features using a modular structure. The official documentation is nicely written. Take a look and let me know if your thoughts.

Flask Blueprints - docs