Top "Cprofile" questions

cProfile is a built-in Python module that describes the run time performance of a program, providing a variety of statistics.

Trying to install cProfile with pip and I'm getting an error

So I've looked around everywhere for help on how to install cProfile and I've found nothing. When this usually happens …

python python-3.x pip cprofile
cProfile for Python does not recognize Function name

I have a function in an app called email which I want to profile. When I try to do something …

python profiling cprofile
use PyCharm to view profiling data

Does anyone know if there is a way to open external .pstat files inside PyCharm for viewing? When I try …

pycharm cprofile
PyPy significantly slower than CPython

I've been testing a cacheing system of my making. Its purpose is to speed up a Django web application. It …

python optimization jit pypy cprofile
Can I run line_profiler over a pytest test?

I have identified some long running pytest tests with py.test --durations=10 I would like to instrument one of those …

python pytest cprofile