by ScoutAPM | Jun 19, 2020 | engineering, python
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...
by ScoutAPM | Apr 1, 2020 | engineering, 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...
by ScoutAPM | Feb 26, 2020 | engineering, python
This article is a continuation of Part I (A comprehensive guide to migrating from Python 2(Legacy Python) to Python 3), which details the changes, and improvements in Python 3, and why they are essential. The rest of the article describes automated tools,...
by ScoutAPM | Jan 24, 2020 | engineering, python
In this article, we’ll be comparing the features of two server-side programming languages; Python and Java. Let’s begin with some design differences in both the languages. Fundamental differences in the design and implementation of Python and Java History...
by ScoutAPM | Jan 6, 2020 | engineering, python, ruby
discuss@satwikkansal.xyz
by ScoutAPM | Nov 25, 2019 | engineering, 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...