The Python subprocess module is a powerful swiss-army knife for launching
and interacting with child processes. It comes with several high-level APIs like
call, check_output and (starting with Python 3.5) run that are
focused at child processes our progra... (more…)
Read more »
Easily add autocomplete dropdowns to your Textual apps - GitHub - darrenburns/textual-autocomplete: Easily add autocomplete dropdowns to your Textual apps... (more…)
Read more »
In Python, Integers are not iterables but we can make them iterable by implementing __iter__ function. In this essay, we change Python's source code and implement iter function for integers. (more…)
Read more »
… 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... (more…)
Read more »