Python 分析器输出的树状图可视化视图?
Python 是否有一个分析器可以渲染类似 Kcachegrind 的 Callee 地图视图之类的内容?
Is there a profiler for Python that can render something like Kcachegrind's Callee map view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这看起来可能会做你想要的
http://www.vrplumber.com/programming/runsnakerun/< /a>
This looks like it might do what you want
http://www.vrplumber.com/programming/runsnakerun/
如果您使用的是 Ubuntu(或有权访问主机),您可以转换 Python hotshot profiler 的输出转换为 KCachegrind 可以读取的形式。查看
kcachegrind-converters
包 hotshot2calltree 命令< /a>.以下是一些参考使用它进行 Python 分析的页面:
If you are on Ubuntu (or have access to a host) you can convert the Python hotshot profiler's output into a form that KCachegrind can read. Check out the
kcachegrind-converters
package hotshot2calltree command.Here are some pages which reference using it for Python profiling: