Even though the new version is around, people would like to call it “Python 3” which makes it sound like a different language.
Read more »
This post will be a guide to fuzzy matching with Python. We'll cover the textdistance package, which implements many different fuzzy matching algorithms. (more…)
Read more »
Concurrency is an essential part of modern programming, as we have multiple cores and many tasks that need to cooperate. However, it's harder to understand concurrent programs when they are not running sequentially. It's not as easy for engineers to ident... (more…)
Read more »
As part of this blog series on Python's syntactic sugar, I said in the post on unary arithmetic operators that it might be the most boring post in this series. I think I was wrong. 😄 The operators is and is not are very short. The documentation for the op... (more…)
Read more »
I’ll take you step by step through how I recovered the source code of remapped compiled Python opcodes. (more…)
Read more »