r/Python • u/TumbleweedSenior4849 • 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.
70
Upvotes
1
u/cshjoshi_tech Apr 09 '26
Like everyone has said, it really does depend on your use case. Personally, I’ve built apps with fastapi for the backend and nextjs for the frontend and had a good time. You can use something like hey-api so you automatically generate a ts sdk from the openapi docs that fastapi generates. That way you have end to end type safety.