Visual profiling in Python

Hey there! Today I bring a practical example of how we can analyze our Python programs to efficiently find bottlenecks. There's a lot of talk on how optimizations shouldn't be done blindly. That instead one should measure which parts of a program are problematic to improve the code execution in an efficient way. Today we will see how to do that in a practical way. Flame Graphs There are lots of ways to measure and visualize the behavior of a program. [Read More]