文件名称:timer-cm:用于测量执行时间的Python上下文管理器
文件大小:3KB
文件格式:ZIP
更新时间:2024-05-20 07:18:28
python Python
计时器厘米 用于测量执行时间的Python上下文管理器。 与结合使用,或单独使用时很有用。 安装 pip install timer_cm 用法 首先,导入Timer类: from timer_cm import Timer 然后将其用作上下文管理器。 在此示例中,我们使用Python的sleep(...)函数将执行暂停一秒钟: with Timer ( 'Simple task' ): sleep ( 1 ) 这将产生以下输出: Simple task: 1.005s 通常,您想知道长时间运行的代码块在哪里花费时间。 使用timer.child(name)跟踪各个步骤: with Timer ( 'Long task' ) as timer : with timer . child ( 'large step' ): sleep ( 1 )
【文件预览】:
timer-cm-master
----LICENSE(1KB)
----setup.py(1KB)
----README.md(1KB)
----timer_cm.py(2KB)
----.gitignore(30B)