Python:使用 pyheat 对 python 程序代码进行

2020-07-07  本文已影响0人  dex0423

1. pyheat

image.png

2. 安装

pip install py-heat

3. 使用

# 查看热力图
pyheat xxx.py
# 导出热力图
pyheat xxx.py --out image_file.png
# 帮助工具
pyheat --help
from pyheat import PyHeat
file_path = "xxx.py"
ph = PyHeat(file_path)
ph.create_heatmap()
# 查看热力图
ph.show_heatmap()
# 导出热力图
ph.show_heatmap('image_file.png')
上一篇 下一篇

猜你喜欢

热点阅读