Posts tagged python

Concurrency with Python

There are different packages in the standard library of Python to run things concurrently. In this blog post, I’ll try to explain the different packages and when it’s best to use them.

Read more ...


Modern Type Hinting in Python

I’ve never been a really big fan of type hinting in Python, but there are some new features and conventions that makes it way more bearable imho. There are less imports needed, it looks cleaner and I might even start to like it if we all used this. Also, it gives me a good reason to update projects to the latest Python version.

Read more ...


Computed Fields in Pydantic

The information in this blog is outdated. For the right way to do computed fields in Pydantic V2, check the official documentation .

Read more ...