Python

Python
03
May 2022
May 03, 2022

Hand-written text recognition

Hand-written text recognition
15
May 2020
May 15, 2020

Handle million requests per second during rush hours

For end-user, it doesn't matter how powerful your server if user needs to wait for couple seconds the see content on the main page. We are talking about latency of the whole platform in general and you need to keep in mind that a system is only as fast as the slowest component.

Handle million requests per second during rush hours
28
Apr 2020
Apr 28, 2020

Recommended security practices

Choosing simple and fast solutions over security is not our way. We have worked with many projects that required a high level of security. Over the years we’ve learned to find a balance between the project budget, high-security standards, and better experience for the end-user. In Webdevelop Pro we strive to incorporate security into every product that we create.

Recommended security practices
27
Feb 2020
Feb 27, 2020

The tiny framework based on AIOHTTP

Let me introduce our project, I think he's already moved on to a stage when it can be called a framework. Although its name says that it is boilerplate

The tiny framework based on AIOHTTP
26
Mar 2018
Mar 26, 2018

Basic comparison between Python async and sync function

Async operation will really speed up your code for blocking I/O operations or networks requests. But it requires to work carefully with "event loop" and code might get complicated.

Basic comparison between Python async and sync function
13
Feb 2018
Feb 13, 2018

Unit Tests in Golang Way

I’ve been working more than 7 years with Python. The way I tested applications with Python was really different from Golang. At first, Golang might shock you, but you just need to understand the ideas behind “Go”.

Unit Tests in Golang Way
12
Jan 2018
Jan 12, 2018

Page Object Pattern in automated testing with Selenium WebDriver

Today I want to talk about Page Object Pattern which very popular in test automation with Selenium WebDriver. In my post will be used Python binding for Selenium WebDriver and Google Chrome Driver.

Page Object Pattern in automated testing with Selenium WebDriver
13
Dec 2017
Dec 13, 2017

Django vs. Aiohttp Performance Test

Today I would like to take a trendy Python framework Django and compare it with a brand new framework aiohttp. I'm a Django fan and believe that Django is a really good framework, and I recommend to use it.

Django vs. Aiohttp Performance Test