python

Extending Python with C Extension Modules

Dynamic Typing in Python can significantly slow down processing due to type checks before operations. In this post, we will bypass these checks by using C Extension modules which will be called from Python.

Build your own Event Loop in Python

The Event Loop helps you to execute tasks concurrently while maintaining minimal memory usage. This post teaches you how to build a simple non-blocking Event Loop from scratch.