Posts from Monastir
Token authenticated aiohttp server
- 31 Dezember 2021
In the previous blog post, a simple aiohttp server was introduced. In the following post we improve the previous server by introducing a simple token authentication mechanism.
Basic aiohttp server
- 31 Dezember 2021
When it comes to deploying an application on a server online, a crucial aspect is its response time since no user wants to wait long for a response. Hence, optimizations and asynchronous processing are the way to go. within this context, aiohttp is a python library that helps implementing asynchronous HTTP Client/Server. The following blog is one of a series of four that will introduce a server implementation, followed by a token based authentication and some stress testing.