Manage containers with podman

When we talk about containers, it’s prevalent to talk about Docker. Docker used to be the most popular container platform.

It has changed, and we can use other platforms that improve some features. In this case, we will talk about Podman.

[Read More]

Python application configuration

Nowadays, we have to configure many configuration parameters in our applications. These parameters sometimes depend on the execution environment.

We need to build a maintainable code whose configuration should be externalised. This way, we can run the same package in different environments. More information here

[Read More]

Virtual environments with Python

Working with Python we have a lot of libraries or dependencies.

Our projects use just a version of each dependency. It’s very important to decouple the list of dependencies between projects. Otherwise, our applications could have an undesired behaviour.

[Read More]