Monday, March 15, 2021

Matthew Wright: Profiling Python code with py-spy

If you have a Python program that is currently running you may want to understand what the real-world performance profile of the code is. This program could be in a production environment or just on your local machine. You will want to understand where the running program spends its time and if any "hot spots" … Continue reading Profiling Python code with py-spy

The post Profiling Python code with py-spy appeared first on wrighters.io.



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...