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

Python asyncio for beginners

Asyncio is a relatively new standard-library solution for writing concurrent programs in Python. It was initially released with Python 3.4, greatly improved in 3.5, and has a solidified API in 3.6. If you’re not entirely sure what “concurrent” means, you ... (more…)

Read more »