Better Python Decorators with Wrapt

A Python decorator wraps a target function with another wrapper function. This wrapper function can add any behavior you might want. For example, it can track execution times, redefine how the wrapped function runs, or modify return values. As a concrete example, the...

Go Fast: Getting Started with Sanic for Python

Tired of waiting for sluggish HTTP requests to complete before your backend code can proceed with other things? Sanic is an asynchronous web framework in Python, that is built to be fast. In a world where Flask and Django are the most preferred web development options...

Memory Management in Python

Memory management in python Yes, you heard it right “memory management in python”. You must be thinking: why do I need to manage the memory in any high-level language like python? The obvious answer is “No”, you don’t have to do memory...