vprof icon indicating copy to clipboard operation
vprof copied to clipboard

Visual profiler for Python

Results 31 vprof issues
Sort by recently updated
recently updated
newest added

##### Description Running a profiler exits with an exception when the path to the script has a space in it ##### How to reproduce 1. Make a python file in...

##### Description Code has 187 lines including white space and comments. It would take a few minutes to run. I couldn't even run it on my work laptop without it...

bug

On Windows, I did `pip3 install vprof`, but that didn't create any `vprof.bat` nor `vprof.exe` anywhere, so when I try something like `vprof -c ` in the command line (as...

##### Description Profiling a CLI script results in this error: ``` Traceback (most recent call last): File "/usr/local/bin/vprof", line 8, in sys.exit(main()) File "/usr/local/lib/python3.9/site-packages/vprof/__main__.py", line 83, in main program_stats =...

##### Description run command ``` vprof -c cmh test.py ``` Error message : ``` Running MemoryProfiler... Building prefix dict from the default dictionary ... Loading model from cache /tmp/jieba.cache Loading...

I have a problem this error message after running my app for several minutes. **Exception happened during processing of request from ('10.255.0.2', 55477)** I am wondering where is the IP...

bug

Cool project. I really like the web interface and the different profile types: flame, memory, line. In one of my test scripts, I use multiprocessing and `vprof` didn't pick up...

feature request

##### Description I'm not really sure where it's coming from, but I'm getting the following error when I run the profiler in heatmap mode (with the -h flag). ##### How...

##### Description I have sample example, when i run, but an error occurred. ```python from twisted.internet import reactor, task from vprof import runner def ppp(): print('called') def profile(): reactor.callLater(3, reactor.stop)...

question