mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-03 12:24:46 +00:00
5 lines
124 B
Python
5 lines
124 B
Python
|
|
import pstats,glob
|
||
|
|
|
||
|
|
for file in glob.glob('*.prof'):
|
||
|
|
pstats.Stats(file).strip_dirs().sort_stats("time").print_stats(20)
|