Ask HN: Django or Flask as first web framework?
11–16 of 16 posts
Re: Ask HN: Django or Flask as first web framework?
#12In the end, you will learn the internals either way. If you start with Flask, you'll still have to learn about Django internals.
Start with Django (and you'll probably never switch to Flask).
Re: Ask HN: Django or Flask as first web framework?
#13I think if you end up in development as a career, Django is going to be used incredibly more often than Flask. In the end, you will learn the internals either way. If you start with Flask, you'll still have to learn about Django internals. Start with Django (and you'll probably never switch to Flask).
Re: Ask HN: Django or Flask as first web framework?
#14You can never go wrong with Django. It comes with enough batteries included to get you up and running with complex projects quickly. Plus, there's a lively ecosystem of useful libraries built on top on Django that make complex tasks a breeze. If you want to built useful webapps quickly , Django is the way to go. The assertion that Flask gives you a better look under the hood is, in my opinion, incorrect. With Flask,…
Re: Ask HN: Django or Flask as first web framework?
#15You can never go wrong with Django. It comes with enough batteries included to get you up and running with complex projects quickly. Plus, there's a lively ecosystem of useful libraries built on top on Django that make complex tasks a breeze. If you want to built useful webapps quickly , Django is the way to go. The assertion that Flask gives you a better look under the hood is, in my opinion, incorrect. With Flask,…
I agree completely. However, personally I am using Flask only because tacking SQLAlchemy on top of Django feels so hacky. I wish there was a second full stack framework with SA.
Re: Ask HN: Django or Flask as first web framework?
#16Earlier quoted context omitted.
I agree completely. However, personally I am using Flask only because tacking SQLAlchemy on top of Django feels so hacky. I wish there was a second full stack framework with SA.
Have you given Pyramid a look?