|
|
|
|
|
by anthonyb
4961 days ago
|
|
It doesn't contain everything you need at all - that's why it's called a microframework. If you want to use an ORM, or have database backed sessions, or user logins, you need to write all that yourself. For example: http://flask.pocoo.org/docs/patterns/sqlalchemy/ Depending on what you're doing, that might be a good thing - but I find writing things which are already included in Django pretty annoying. |
|
The extensions were mentioned; User logins for example are just a "pip install Flask-Login" and "from flaskext.login import whatever" away. I had reason to roll my own, ~100 simple lines that were easily plugged.
There are pros and cons, neither is "better", the right tradeoff depends on what you're making.