FastAPI: Build REST API in 5 minutes
Maybe we know FastAPI is a web framework of python. The meaning of its name expresses what is more special about this framework than others. The very new features of python async and await are here. The API is really fast like nodeJS and Go (They claimed). The more interesting thing is the implementation time of the REST API. The first endpoint will take at most five minutes to implement including the API docs. What I...
Some Cool New Features of Python 3.9
Python 3.9 is released on 5th October 2020 and is now available. It comes with some of the great features and lots of improvements. In this article, we will explore some of its cool features. To know more about what is coming with Python 3.9 visit this page. And if you wish to see the full changelog then go here. Dictionary Merge & Update Operators Two new operator Merge (|) and Update (|=) are added to the built-in class dict.Merge (|) creates a new dictionary...