This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
## FastAPI is a great tool for... fast APIs... but there are better | |
## solutions for web apps such as Django, Web2Py and Flask. Talking | |
## about Flask, there is the Quart project which aims to be the full | |
## async version of Flask that you can use today. | |
## | |
## I have read the following documentation to reach the result of this | |
## gist: | |
## | |
## * <https://fastapi.tiangolo.com/tutorial/middleware/> |