FastAPI, Django or Flask for a greenfield Python project today? Want something simple and not too bloated, would mostly interact with queues one way or another if that matters
Comments
Log in with your Bluesky account to leave a comment
Need an solid ORM or not ?
Need an API or not ?
Speed and async processing or not ?
IMHO :
- Django : if simple site and integrated ORM needed, and simple needs for API (DRF)
- FastAPI : for APIs, if ORM is a secondary concern, and need for speed,
- Flask : not anymore or for POCs
Comments
Need an API or not ?
Speed and async processing or not ?
IMHO :
- Django : if simple site and integrated ORM needed, and simple needs for API (DRF)
- FastAPI : for APIs, if ORM is a secondary concern, and need for speed,
- Flask : not anymore or for POCs
API: I thought they were all for that?! I'm just building a basic HTTP API
Currently giving FastAPI a solid try, seemed the simplest and less bloated out of the three