Articles by Kamil Kucharski

Connect to PostgreSQL with SQLAlchemy and asyncio

July 22, 2022 | Kamil Kucharski

Recently, more and more Python applications have been built based on async communication using the asyncio library that allows a programmer to write concurrent code with async/await syntax. This tutorial shows how to connect to the PostgreSQL database within an asynchronous environment using SQLAlchemy and asyncio. [...Read more...]

Modular Monolith in Django

March 15, 2022 | Kamil Kucharski

Sadly, poorly modeled (mostly due to bad communication, incomplete knowledge transfer, or tight budget) logic inside the monolith usually leads to a so-called big ball of mud where every logical component is coupled with one another on a very low level. In contrast, what modular monolith offers is loosely coupled, ... [...Read more...]