Understanding Python Metaclasses

… and Python objects in general — None of the existing articles [1] give a comprehensive explanation of how metaclasses work in Python so I’m making my own. Metaclasses are a… Read more

Similar

Making a Python Package in 2021

If you are like me, every once in a while you write a useful python utility and want to share it with your colleagues. The best way to do this is to make a package: it easy to install and saves from copy-pasting. (more…)

Read more »