Hacker News new | ask | show | jobs
by tanner49 743 days ago
That's a fair critique. I would say that the Django ecosystem is fairly batteries included though. I used the django-allauth package for this project and it filled in those gaps.

Additionally, in the Python ecosystem your other options are basically flask and fastapi, which are definitely not any form of batteries included.

2 comments

As a guy who has had a 8 year career largely in Django, I generally agree with this sentiment.

Even though I prefer and am probably much more functional with Django + htmx, my sense is that for general web applications both Rails and Laravel are generally more functional ecosystems.

Most of my Django work has been pretty data heavy or geospatial heavy, in which case I think python and/or geodjango are a great solution. In general, however, if I had a trajectory for more traditional web apps, I’d probably use Rails.

Rails was fun but combined with the uniqueness of Ruby, RoR always felt a little "too magic" for me.
Django people always say this "All you need to do is install this user management lib you're done".

There's at least 10 sophisticated steps to install and configure a user management system for Django and for beginners seeking genuine batteries included they'll have no idea if they are doing it right or wrong, ending up at best with problems and at worst a misconfigured auth system.

Django really should not be recommended to beginners, it's for sophisticated Python devs.