cprofilev
cprofilev copied to clipboard
:fire: An easier way to use cProfile
Hi and thanks for this lovely project. I have a small webserver using aiohttp (which in turn, wraps asyncio). When running it like so: `python -m cprofilev main.py` I get...
Is there a way to run cprofilev for a module? Im trying like that: python3 -m cprofilev "-m myprogram myargs" also python3 -m cprofilev -m myprogram my args
love the tool and all, but I'd like to be able to output cprofilev output to a file for html viewing, rather than have cprofilev serve as the file viewer...
I have profiled some code using the command ```$ python -m cProfile -o report.prof script.py``` I then launch cprofilev like so ```$ cprofilev -f report.prof ``` When I go to...
This PR would close #20. I've added functionality to parse the table out of the `cprofilev` results and have [datatables](https://datatables.net) be the front-end, which makes it very easy to quickly...
Hi! I'm trying to use cprofilev. I'm not a python geek. So maybe you can help me the error I'm facing. When I launch: python -m cprofilev -p 11100 /path/to/x.py...
Hi, With this PR I have added a query argument 'func_loc' which allows you to filter by the filename and line number where a function is defined, in addition to...
It might be nice to use something like [DataTables](https://www.datatables.net/) to make it easier to read the output and filter for particular rows in the table. Do you have any opposition...
Rather than the web server assuming a single profile output, the webserver could serve from a directory of profile outputs that can be viewed.