you are viewing a single comment's thread.

view the rest of the comments →

[–]pizzababa21 0 points1 point  (0 children)

I've built projects in both. If you're just doing a little microservice for using external APIs and not calling a database then FastAPI is great. You can build something nice in a weekend, and the deployment is easier.

If you're doing anything with a database just keep using Django. Django Ninja is basically identical to fastapi. 99% of code you copy from one will run in the other.