|
|
|
|
|
by tedmiston
3501 days ago
|
|
You could write Hello World the same way in Django with nothing more than one route and one view. However, the Django tutorial is longer, I think 6 pages, because it provides so much more out of the box. The Flask tutorial would be the same length if it covered topics like a variety of views, templates, serialization, SQLAlchemy, migrations, model design, etc. Flask actually has a tutorial just like this in the docs [1]. I think you should give Django a chance to be able to compare the two frameworks in these kinds of aspects. [1]: http://flask.pocoo.org/docs/0.11/tutorial/ |
|