cprofile

cprofile

文章 0 浏览 3

python cProfile 给出“int”;对象不可调用错误

以下脚本运行良好: $ python myscript.py 当我尝试使用 cProfile 分析我的代码时,例如: $ python -m cProfile -s time myscript.py 或 $ python -m…

君勿笑 2024-12-05 17:30:15 1 0

PyPy 明显慢于 CPython

我一直在测试我制作的缓存系统。其目的是加速 Django Web 应用程序。它将所有内容存储在内存中。根据 cProfile,我的测试中的大部分时间都花在 QueryS…

岛歌少女 2024-11-29 17:45:51 4 0

Python cProfile:pyo 文件是否可能

我是Python初学者,尝试通过命令行调用cProfile, python -m cProfile -o ./temp/PROFILE.log myScript.pyo 但它会抛出一条错误消息,指出 SyntaxErro…

鸠魁 2024-11-18 16:51:09 3 0

剖析 Python cProfile 与 unix 时间

我正在分析 python 代码;为什么它在用户空间花费更多时间? user@terminal$ time python main.py 1964 function calls in 0.003 CPU seconds 排序方…

何以心动 2024-11-17 17:36:22 4 0

这个 Python cProfile 输出是什么意思?

ncalls tottime percall cumtime percall filename:lineno(function) 1 0.000 0.000 65.417 65.417 :1() 1 43.675 43.675 65.417 65.417 primenumber_…

-小熊_ 2024-11-09 12:10:51 5 0

python:面向字节码的分析器

我正在编写一个网络应用程序(http://www.checkio.org/),它允许用户编写蟒蛇代码。作为众多反馈指标之一,我希望在对此代码运行检查时启用分析。这…

乖乖兔^ω^ 2024-11-05 03:06:30 4 0

使用 cProfile 分析 Python 中类的方法?

我想使用 cProfile 来分析 Python 中函数的方法。我尝试了以下方法: import cProfile as profile # Inside the class method... profile.run("self.m…

氛圍 2024-10-08 22:21:07 6 0

增加Python中cProfiler的深度以报告更多功能?

我正在尝试分析一个调用其他函数的函数。我按如下方式调用探查器: from mymodule import foo def start(): # ... foo() import cProfile as profile …

全部不再 2024-10-08 04:42:57 8 0

App Engine:time.sleep() 是否会计入我的配额?

嘿。我正在开发一个 App Engine 应用程序,该应用程序涉及对 Google Maps API 进行地理编码的查询。 Google 地图不喜欢太多请求,因此我使用 time.sle…

甜心 2024-10-04 11:06:09 7 0

分析将自身分叉为守护进程的 python 程序

是否可以在将自身分叉为守护进程的多线程 python 程序上运行 cprofile?我知道你可以让它在多线程上工作,但我还没有看到任何关于分析守护进程的内容…

无所谓啦 2024-09-28 08:57:05 5 0

Python 有高级分析模块吗?

我想分析我的 Python 代码。我很了解 cProfile,并且使用它,但它的级别太低了。 (例如,甚至没有一种简单的方法来捕获您正在分析的函数的返回值。)…

少年亿悲伤 2024-09-24 17:08:59 12 0

无法弄清楚如何在程序内部调用 cProfile

很抱歉初学者的问题,但我无法弄清楚 cProfile (我对 Python 真的很陌生) 我可以通过我的终端运行它: python -m cProfile myscript.py 但我需要在…

稳稳的幸福 2024-09-14 14:53:51 13 0

如何在 python 中使用 urllib2 加快获取页面的速度?

我有一个脚本可以获取多个网页并解析信息。 (示例可参见 http://bluedevilbooks.com/search /?DEPT=MATH&CLASS=103&SEC=01 ) 我在上面运行了 cProfi…

幽梦紫曦~ 2024-09-14 03:36:24 9 0

在 /cgi-bin/ 中的 Python 脚本上使用 cProfile 或 line_profile?

有没有办法在服务器上的脚本上运行 cProfile 或 line_profile? 即:我如何获得 http://www 上两种方法之一的结果.Example.com/cgi-bin/myScript.py …

枫林﹌晚霞¤ 2024-09-14 03:29:43 11 0

Python cProfile 的开销很大吗?

各位 Python 专家,大家好,我开始使用 cProfile,以便获得有关我的程序的更详细的计时信息。然而,令我感到相当不安的是,开销很大。知道为什么 cPro…

命硬 2024-09-07 17:55:52 13 0
更多

推荐作者

胡图图

文章 0 评论 0

zt006

文章 0 评论 0

z祗昰~

文章 0 评论 0

冰葑

文章 0 评论 0

野の

文章 0 评论 0

天空

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文