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

2021/10/15 22:14:27

本文主要是介绍【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样式


这篇关于【alive-progress】Python控制台输出动态进度条的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程