Posts tagged Server-client
Whisper based speech recognition server
- 27 Dezember 2022
- Munich
- English
- Server-client
In the last blog post: Token authenticated aiohttp server, an authenticated aiohttp server was introduced. In this post, we build on top of the previous posts, to create an Automatic Speech Recognition (ASR) authenticated server, that uses the newly introduced whisper by OpenAI.
Token authenticated aiohttp server
- 31 Dezember 2021
- 08 April 2022
- Monastir
- English
- Server-client
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
- 16 April 2022
- Monastir
- English
- Server-client
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.