【alive-progress】Python控制台输出动态进度条

简介

alive-progress是一种具有实时吞吐量和非常酷的动画新型的进度条python库。

使用

from alive_progress import alive_bar
import time

times = range(10)
with alive_bar(len(times)) as bar:
  for item in items:
    time.sleep(1)
    bar()  # 更新控制台进度条

可以通过配置alive_bar的参数来改变进度条的样式,如:

alive_bar(times, title="加载中", bar="filling", spinner="waves")

title是进度条前的标题,bar是进度条样式,spinner是进度条右侧的动画样式。

alive_progress.show_bars()  # 查看bar样式
alive_progress.showtime()  # 查看spinner样式

你可能感兴趣的:(Python,python)