You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
625 B
20 lines
625 B
from GetDanmu import GetInfo
|
|
from GetAI import GetAI
|
|
from GetWordCloud import GetWordCloud
|
|
import time
|
|
|
|
if __name__ == '__main__':
|
|
start_time = time.perf_counter()
|
|
GetInfo()
|
|
end_time = time.perf_counter()
|
|
print(f"GetInfo函数执行时间:{end_time - start_time}秒")
|
|
|
|
start_time = time.perf_counter()
|
|
GetAI()
|
|
end_time = time.perf_counter()
|
|
print(f"GetAI函数执行时间:{end_time - start_time}秒")
|
|
|
|
start_time = time.perf_counter()
|
|
GetWordCloud()
|
|
end_time = time.perf_counter()
|
|
print(f"GetWordCloud函数执行时间:{end_time - start_time}秒") |