On FastAPI
Whenever I wanted people to interface some module I wrote or let them do inference on a model I resorted to Flask. After all it is lightweight, widely used, well documented and there are gazillion tutorials that help you out on getting started, e.g. the famous Flask Mega Tutorial.
the right tool for the job
I didn’t know that I needed something else until somebody told me about FastAPI. See, you can build APIs with Flask, but it was not specifically intended with that task in mind, but with the ability to construct complex web applications. While that is not specifically excluding, there’s still that “right tool for the job” mentality that I want to keep in mind when I build things.
things I like about FastAPI
I’m not one to tell you about the nitty-gritty details of both frameworks, and this is certainly not a Flask vs FastAPI discussion. I let other people talk about the differences between all of those available frameworks. One example would be a great talk by Chris Withers. What I can do, however, is tell you what I like about FastAPI, you take a look at it and decide for yourself.
documentation:
I kind of judge documentation by the times I have to look up things outside of the actual documentation. In this case, it was (almost) none. FastAPI has an outstanding documentation with a great tutorial section that gets you started in no-time. Once you got started, it holds a section for everything you would love to do a deep-dive on.it’s fast:
It’s fast to code, and fast. Not that I will come anywhere close to fully notice it, but it is good to use something that has the potential to compete with APIs written with Go or nodeJS.typing:
FastAPI uses pydantic for data validation, so all I do is declare input and/or output models and FastAPI validates the data, converts the output to the type declaration of the models, adds a JSON schema in the OpenAPI path operation and uses the models as an input for the documentation. In the case of the output (response_model) FastAPI will also make sure to limit the output data to what is declared in the model.automatic interactive documentation:
Writing documentation for your API is a no-brainer. In Flask I would build my API and at the very least document, the endpoints my API provides, the example input parameters and some example output that is to be expected. Now, that’s two steps at least - build, document. With FastAPI, I build my API and the documentation is built automatically from the routes, python typing and the input/output models you define.SwaggerUI All of this comes with the interactive Swagger UI that you can only love. I don’t have to build a frontend to work with my API, I can just spin up a local uvicorn server with my FastAPI application and it’s automagically generated Swagger UI and I can interact with all endpoints of my application. Awesome, to say the least.
Now that’s my two cents on FastAPI, just give it a try in your next project and follow in the footsteps of other adopters.