Hacker News new | ask | show | jobs
by jakjsak 3771 days ago
Related question. Is Django still a good choice for web apps? I mean should I choose one of the newer ones or is Django good enough?
1 comments

It seems popular still. Do you want a batteries included python web framework? Can't do much better.

In your case, a SPA is not using a lot of Django stuff. So do you really like the admin pages and the ORM? If so use it. If you don't need admin pages and you hate the Django ORM, maybe look at just using Flask?

-- Only used Django a few times so not an expert, but above is my gut feel.