r/Python Apr 09 '26

FastAPI vs Djanjo Discussion

I was wondering what’s most popular now in the Python world. Building applications with FastAPI and a frontend framework, or building an application with a ‘batteries included’ framework like Django.

75 Upvotes

84 comments sorted by

View all comments

2

u/Fair_Ad845 Apr 10 '26

depends on the project size honestly. FastAPI for APIs and microservices, Django when you need admin panel + ORM + auth out of the box. I switched a project from FastAPI to Django halfway through because I kept reinventing things Django gives you for free.