代码拉取完成,页面将自动刷新
import sys, time
from pkg_resources import yield_lines
class ProgressBar:
def __init__(self, count = 0, total = 0, width = 50):
self.count = count
self.total = total
self.width = width
def step(self,r = None):
self.count += 1
sys.stdout.write(' ' * (self.width + 9) + '\r')
sys.stdout.flush()
progress = round( self.width * self.count / self.total )
if r:
sys.stdout.write(r)
else:
sys.stdout.write('{0:3}/{1:3}: '.format(self.count, self.total))
sys.stdout.write('■' * progress + '□' * (self.width - progress) + '\r')
if progress == self.width:
sys.stdout.write('\n')
sys.stdout.flush()
# bar = ProgressBar(total = 10,width=10)
# for i in range(10):
# bar.step()
# time.sleep(1)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。