Posts tagged python
Concurrency with Python
- 28 July 2022
- Software Development
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.
Modern Type Hinting in Python
- 23 July 2022
- Software Development
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.
Computed Fields in Pydantic
- 21 July 2022
- Software Development
The information in this blog is outdated. For the right way to do computed fields in Pydantic V2, check the official documentation .