Use a Flask Blueprint to Architect Your Applications
What is this article about?
Flask is a very well known python web framework in which the entire project structure is up to the developers. When working on a small project the default flask structure is sufficient enough. But what if its not a small application? What if its a big project like eCommerce website? What if multiple people are working on the same project? In cases like this your default project structure will fail. You need to make more reusable code with a proper project structure. Flask Blueprint is one of the means of achieving it. Take a deep look in it.