A Python timer module, containing class Timer() and decorator function timer(), as well as some useful functions that can be used for performance analysis.一个Python计时器模块, 其中包含Timer()类和timer()装饰器, 以及一些相关的有用函数, 可用于程序性能分析。
Project description
模块名称 MODULE NAME
timer_tool
简介 DESCRIPTION
A Python timer module, containing class Timer() and decorator function timer(), as well as some useful functions that can be used for performance analysis. 一个Python计时器模块, 其中包含Timer()类和timer()装饰器, 以及一些相关的有用函数, 可用于程序性能分析。
包含的函数和类 Functions & Classes:
类:
class Timer
一个计时器类。A timer class.
- start()
- 开始计时。此方法在Timer类初始化时会被自动调用。
Start timing. This method will be automatically called when the Timer class is initialized.
- gettime()
- 获取从计时开始到现在的时间。
Get the elapsed time since the timer started.
- printtime(fmt_str=”用时:{:.8f}秒”)
- 打印出从计时开始到现在的时间, 也就是gettime()获取的值。
Print the time elapsed since the timer started, which is the value obtained from gettime().
函数:
timer(msg=None, file=sys.stdout, flush=False):
一个装饰器, 为某个函数或生成器计时 (比使用Timer类更简洁)。 A wrapper for timing a function or a generator that is briefer than the Timer class. 用法:@timer(msg="用时:{time}秒") def func(args): print("Hello World!") #或: @timer def func(args): print("Hello World!")
示例代码 EXAMPLES
示例1:
import timer_tool
t=timer.Timer() #初始化Timer对象
do_something()
t.printtime() #输出执行do_something()所用时间 (也可使用t.gettime()获取所用时间)
示例2:
#退出with语句时自动打印出所用时间。
import timer_tool
with timer.Timer(): #在这里开始计时
do_something()
示例3:
# 为某个函数计时
from timer_tool import timer
@timer
def func():
print("Hello World!")
示例4:
# 程序精确地延迟一段时间
from time import sleep
from timer_tool import sleep as sleep2
sleep(0.0001)
sleep2(0.0001)
# 经测试表明, time模块的sleep()函数与本模块的函数相比, 有明显的延迟
版本 VERSION
1.2.4
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
timer-tool-1.2.4.tar.gz
(15.9 kB
view details)
File details
Details for the file timer-tool-1.2.4.tar.gz
.
File metadata
- Download URL: timer-tool-1.2.4.tar.gz
- Upload date:
- Size: 15.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6a1d4e133d453c4220018a025c3ae4e18201821d76ccc5205719ca8ace8dd24 |
|
MD5 | b3d76b0c9d78cd6326ea7004bea026b9 |
|
BLAKE2b-256 | dc2ddc41b5faf7503d8f7210c52d2ade4d70b9adc65a137ca3f7857efcdef12c |