Structure big apps with Flask - how to
When you come from another language or framework, learning Flask at first may be a time-consuming task.
You will have to familiarize with the peculiarities of the langue like list comprehension and tuple unpacking. These consist of a lot of syntactic sugar that helps you write less code.
You will need to understand the import system underlying in Python.
You will have to find out a way to structure your app so that you wonât end up repeating code uselessly and the imports will not cause circular dependency issues.
You will need to familiarize with SQL Alchemy.
You can read the how-to here.















