开源可视化 Python 性能调优工具 VPT 发布

开源可视化 Python 性能调优工具 VPT 发布
<iframe id="alimamaifrm" style="WIDTH: 750px; HEIGHT: 110px" border="0" name="alimamaifrm" marginwidth="0" marginheight="0" src="http://p.alimama.com/cpacode.php?t=A&amp;pid=mm_10108440_0_0&amp;w=750&amp;h=110&amp;rn=1&amp;cn=3&amp;ky=&amp;cid=50004849&amp;bgc=FFFFFF&amp;bdc=E6E6E6&amp;tc=0000FF&amp;dc=000000" frameborder="0" width="750" scrolling="no" height="110"></iframe>
VisualPyTune(简称VPT)是我自己创建的开源项目,亲历亲为,现在终于发布了。有种由衷的高兴,难以言表,希望它真的能帮助广大的 Pythoner ,也欢迎大家提出宝贵的意见和建议。
缘起:
Python 程序的确更容易遭遇性能瓶颈,尽管其内置了性能剖分模块(如 Profile、hotshot 等),但对于剖分结果却没有一个良好的图形界面浏览器,使用 pstats模块获取的纯文本的报表阅读非常困难。VisualPyTune(简称VPT) 正是为解决这个问题而生。它提供了友好的 GUI 界面(使用 wxPython 开发),能够方便地进行排序、过滤、查看调用函数、查看被调用函数、以及饼图形式的被调用函数视图。能够方便地进行性能调优。
项目主页:
预览:
安装:
Windows 用户请从下面的地址下载压缩包(5.3 MB),解压即可以使用:
Linux 用户请直接从 svn checkout:
svn checkout http://visualpytune.googlecode.com/svn/trunk/ visualpytune-read-only
Bug反馈:
请到下面的地址填写表单(点击左上角的 New Issue)
后续开发内容:
1)开发 CallGraph,参考 http://pycallgraph.slowchop.com/
2)完善文档
欢迎朋友们参与本项目。
<iframe id="alimamaifrm" style="WIDTH: 750px; HEIGHT: 110px" border="0" name="alimamaifrm" marginwidth="0" marginheight="0" src="http://p.alimama.com/cpacode.php?t=A&amp;pid=mm_10108440_0_0&amp;w=750&amp;h=110&amp;rn=1&amp;cn=3&amp;ky=&amp;cid=50004849&amp;bgc=FFFFFF&amp;bdc=E6E6E6&amp;tc=0000FF&amp;dc=000000" frameborder="0" width="750" scrolling="no" height="110"></iframe>

你可能感兴趣的:(python)