profiling
profiling copied to clipboard
Was an interactive continuous Python profiler.
Hello, is there anyway that I can profile a flask app with profiling?
I have a docker container that runs uwsgi to lunch my flask app, how do I profile thing? I'd like to see performance of one of my routes that's slow....
``` File "profiling\tracing\timers.py", line 24, in Timer clock = time.clock AttributeError: module 'time' has no attribute 'clock' ``` Seems need change function clock on `time.perf_counter() or time.process_time()`
my code run with only 2 second , and then it used at least 180s by profiling -.- is something wrong with it ??
https://pypi.org/project/profiling/#files could you download this and check `profiler.py`? there's no dump method in there. for some reason, there's mismatch between github master branch and latest pypi package.
`sudo pip3 install profiling` t always shows same error ``` [Installing collected packages: profiling Running setup.py install for profiling ... error Complete output from command /usr/bin/python3.6 -u -c "import setuptools,...
In my use case, there is an algorithm that ends up stalling after running for a long time. I would like to use live-profiling to find the exact cause when...
https://github.com/what-studio/profiling#profiling-from-code while running : profiler.dump('path/to/file'), It says, AttributeError: 'TracingProfiler' object has no attribute 'dump' I have to save profiling results.. can someone provide a solution / alternatives?
My personal use case was that I was profiling a service. The main thread would be reading from Kombu all the time, so the interface was mostly showing operations from...
I noticed that the README mentions support for greenlets. How about Python 3.4+'s asyncio? Should we just use `--timer=greenlet` for all the varieties of asynchronous programming that Python supports (greenlets,...