Lately, I've been working with Python C-API. I wanted to use subinterpreters with their own GIL to unlock the performance gains promised by being able to execute many threads in parallel which was not possible before Python 3.12. (more…)
Read more »
Python ORM for PostgreSQL. Contribute to blingo77/PostPie development by creating an account on GitHub. (more…)
Read more »
"Speaker: Raymond Hettinger Python's dictionaries are stunningly good. Over the years, many great ideas have combined together to produce the modern implemen... (more…)
Read more »
My Python setup used to change a lot, as I would find ad-hoc solutions for my needs. These days I've settled on a Python setup that satisfies pretty much all of my different use cases and is easy to use. It is composed of these tools:
Pyenv for Python ver... (more…)
Read more »
Let’s pry apart this slightly unintuitive Python dictionary expression to find out what’s going on in the uncharted depths of the Python interpreter.
Read more »