How Python async should have been

Your sync and async code can be identical, but still, can work differently. It is a matter of right abstractions. In this article, I will show how one can write sync code to run async programs in Python. Read more

Similar

Abstract Classes in Python

Abstract Class is a very important concept of object-oriented programming. It is a good practice of DRY (Don’t Repeat Yourself) principle. In a large project, code duplication is approximately equal… (more…)

Read more »