标签: python profiling visualization data-visualization
是否有适用于Python的分析器可以渲染类似Kcachegrind的Callee地图视图?
答案 0 :(得分:4)
看起来它可能会做你想要的事情
http://www.vrplumber.com/programming/runsnakerun/
答案 1 :(得分:2)
如果您使用的是Ubuntu(或可以访问主机),您可以将Python hotshot profiler的输出转换为KCachegrind可以读取的格式。查看kcachegrind-converters包hotshot2calltree command。
kcachegrind-converters
以下是一些使用它进行Python分析的页面: