Skip to content Skip to sidebar Skip to footer
Showing posts with the label Cprofile

Cprofile Command Line How To Reduce Output

I'm trying to run cProfile on my python script and all I care about is the total time it took t… Read more Cprofile Command Line How To Reduce Output

Pypy Significantly Slower Than Cpython

I've been testing a cacheing system of my making. Its purpose is to speed up a Django web appli… Read more Pypy Significantly Slower Than Cpython

Python Cprofile - Decorated Functions Obscuring Profile Visualization

I have a base class with a @classmethod which acts as a decorator for a large number of methods in … Read more Python Cprofile - Decorated Functions Obscuring Profile Visualization

Saving CProfile Results To Readable External File

I am using cProfile try to profile my codes: pr = cProfile.Profile() pr.enable() my_func() # the … Read more Saving CProfile Results To Readable External File