I was trying to prepare a lightning talk at work and thought about a small experiment I did with...
Most of you have probably written a workaround for some bug in a web API or a third-party package. If...
I think I might be a bit messy, but maybe so are you? Either way, I quite often find myself with...
The concept of iterators isn't in any way specific to Python. In the most general terms, it is an...
My first and most read blog post, by an order of magnitude, is this one about plotly: ...
Are you managing multiple requirements files for your Python project? Are you copy-pasting rows from...
If you would like to install the latest version of flask, you would probably use pip install flask....
I really like the type hints added to python 3.5, PEP 484, but somehow I totally missed PEP 544 -...
During two weeks I developed a game for the Game Jam, Kodsnacks Tvåveckorssylt - Fjärde Omgången....
Earlier today I found this post by Ryan Westlund: ...
So I have decided I will embrace some of my, sometimes, let's call them "less practical ideas"....
So, I was catching up on some of the talks from PyCon 2020. First, I watched Steven Lott - Type...
Before getting into the question posed in the title, lets look at mathematical notation so everyone...
Python modules can be thought of as a Singleton design pattern. They are initialized once, the first...
I ran across a post asking how you can create class-only methods in Python. A class-only method...
I was reading up on the practice in C++ called Resource Acquisition Is Initialization or RAII, after...
In this post, I will cover my most used CLI-tool. It finds a virtual environment, created using...
I wanted to have a simple tool as my first example in the series. So this first tool will just print...
In the previous post of this series, I showed how to set up a folder for our own CLI-tools in...
The other day I learned two things about context managers. The first one is that the variable,...
This is the first post in a series on creating Python CLI-tools in Windows. However, this post will...
In this post, I will cover how you can create a bar chart that has both grouped and stacked bars...