แถบข้อความความคืบหน้าในคอนโซล [ปิด]


435

ฉันเขียนแอพคอนโซลอย่างง่ายเพื่ออัพโหลดและดาวน์โหลดไฟล์จากเซิร์ฟเวอร์ FTP โดยใช้ ftplib

ฉันต้องการให้แอปแสดงภาพความคืบหน้าของการดาวน์โหลด / อัพโหลดสำหรับผู้ใช้ ทุกครั้งที่มีการดาวน์โหลด data chunk ฉันต้องการให้มีการอัปเดตความคืบหน้าแม้ว่าจะเป็นเพียงการแสดงตัวเลขเช่นเปอร์เซ็นต์

ที่สำคัญฉันต้องการหลีกเลี่ยงการลบข้อความทั้งหมดที่พิมพ์ไปยังคอนโซลในบรรทัดก่อนหน้า (เช่นฉันไม่ต้องการ "ล้าง" เทอร์มินัลทั้งหมดในขณะที่พิมพ์ความคืบหน้าที่อัปเดต)

นี่เป็นงานที่ค่อนข้างธรรมดาฉันจะทำแถบความคืบหน้าหรือการสร้างภาพข้อมูลที่คล้ายกันซึ่งส่งออกไปยังคอนโซลของฉันในขณะที่รักษาเอาท์พุทโปรแกรมก่อนหน้าได้อย่างไร


อืมดูเหมือนกับคำถามที่ถามเมื่อวานนี้: stackoverflow.com/questions/3160699/python-progress-bar/3162864ดังนั้นคุณควรใช้ปลาpypi.python.org/pypi/fish
Etienne

29
"แค่ใช้ GUI" เข้าใจผิดว่า GUI นั้นยอดเยี่ยมในบางสถานการณ์ (ช่วงการเรียนรู้อย่างรวดเร็วกิจกรรมเฉพาะกิจหรือกิจกรรมโต้ตอบหรือแบบใช้ครั้งเดียว) ในขณะที่เครื่องมือบรรทัดคำสั่งนั้นยอดเยี่ยมสำหรับผู้อื่น (ผู้ใช้ที่เชี่ยวชาญ บินที่จะทำการดำเนินการที่กำหนดไว้อย่างรอบคอบหลายครั้ง).
โจนาธานฮาร์ทลี่

14
ฉันโหวตให้เปิดใหม่อีกครั้ง คำถามไม่ได้ทำให้ฉันกว้างเกินไป
Franck Dernoncourt

ฉันคิดว่าสิ่งที่คุณกำลังมองหาคือtqdm ... แต่ฉันก็ไม่รู้เหมือนกันว่าทำไม SO ถึงกระตุ้นให้ฉันทบทวนการลงคะแนนเปิดใหม่สำหรับคำถามอายุปี
kungphu

ฉันได้เผยแพร่แถบความคืบหน้ารูปแบบใหม่ซึ่งคุณสามารถพิมพ์ดูปริมาณงานและอื่น ๆ ได้แม้กระทั่งหยุดชั่วขณะนอกเหนือจากภาพเคลื่อนไหวที่เจ๋งมาก! โปรดดู: github.com/rsalmei/alive-progress ! มีชีวิตอยู่ความคืบหน้า
rsalmei

คำตอบ:


465

แถบความคืบหน้าอย่างง่ายและปรับแต่งได้

ต่อไปนี้เป็นคำตอบโดยรวมของคำตอบมากมายที่ฉันใช้เป็นประจำ (ไม่จำเป็นต้องมีการนำเข้า)

# Print iterations progress
def printProgressBar (iteration, total, prefix = '', suffix = '', decimals = 1, length = 100, fill = '█', printEnd = "\r"):
    """
    Call in a loop to create terminal progress bar
    @params:
        iteration   - Required  : current iteration (Int)
        total       - Required  : total iterations (Int)
        prefix      - Optional  : prefix string (Str)
        suffix      - Optional  : suffix string (Str)
        decimals    - Optional  : positive number of decimals in percent complete (Int)
        length      - Optional  : character length of bar (Int)
        fill        - Optional  : bar fill character (Str)
        printEnd    - Optional  : end character (e.g. "\r", "\r\n") (Str)
    """
    percent = ("{0:." + str(decimals) + "f}").format(100 * (iteration / float(total)))
    filledLength = int(length * iteration // total)
    bar = fill * filledLength + '-' * (length - filledLength)
    print('\r%s |%s| %s%% %s' % (prefix, bar, percent, suffix), end = printEnd)
    # Print New Line on Complete
    if iteration == total: 
        print()

หมายเหตุ:นี่สำหรับ Python 3; ดูความคิดเห็นสำหรับรายละเอียดเกี่ยวกับการใช้สิ่งนี้ใน Python 2

ตัวอย่างการใช้งาน

import time

# A List of Items
items = list(range(0, 57))
l = len(items)

# Initial call to print 0% progress
printProgressBar(0, l, prefix = 'Progress:', suffix = 'Complete', length = 50)
for i, item in enumerate(items):
    # Do stuff...
    time.sleep(0.1)
    # Update Progress Bar
    printProgressBar(i + 1, l, prefix = 'Progress:', suffix = 'Complete', length = 50)

ตัวอย่างผลลัพธ์:

Progress: |█████████████████████████████████████████████-----| 90.0% Complete

ปรับปรุง

มีการอภิปรายในความคิดเห็นเกี่ยวกับตัวเลือกที่ช่วยให้แถบความคืบหน้าในการปรับแบบไดนามิกเพื่อความกว้างของหน้าต่างเทอร์มินัล ในขณะที่ฉันไม่แนะนำสิ่งนี้นี่เป็นส่วนสำคัญที่ใช้คุณสมบัตินี้ (และบันทึกข้อสังเกต)


21
ตัวอย่างนี้ใช้งานได้ดี! ฉันพบปัญหาเล็กน้อยสองสามครั้งดังนั้นฉันจึงทำการแก้ไขเล็กน้อย (PEP-8, การเข้ารหัสเริ่มต้นสำหรับตัวละครที่ไม่ใช่ ASCII) และโยนพวกเขาเป็นส่วนสำคัญที่นี่: gist.github.com/aubricus/f91fb55dc6ba5557fbab06119420dd6a
Aubricus

3
เป็นที่น่าสังเกตว่าการประกาศ UTF-8 นั้นไม่จำเป็นเว้นแต่คุณจะใช้ Python 2 @Aubricus
Greenstick

2
@MattClimbs สิ่งนี้เขียนขึ้นสำหรับ Python 3 ซึ่งใช้การเข้ารหัสแบบ UTF-8 ตามค่าเริ่มต้น คุณสามารถเปลี่ยนพารามิเตอร์การเติมเริ่มต้นของฟังก์ชันซึ่งเป็นอักขระ UTF-8 หรือใช้การประกาศ UTF-8 ดูส่วนสำคัญในความคิดเห็นด้านบนสำหรับตัวอย่างของการประกาศ UTF-8 ควรมีลักษณะอย่างไร
Greenstick

1
ขอบคุณบทสรุปที่ดีการตรวจจับขนาดเทอร์มินัลอาจเป็นประโยชน์สำหรับฟังก์ชั่นนี้# Size of terminal rows, columns = [int(x) for x in os.popen('stty size', 'r').read().split()] columnsควรส่งผ่านไปยังความยาวเพื่อปรับขนาดแถบความคืบหน้าไปยังหน้าต่างเทอร์มินัล แม้ว่าความยาวของส่วนที่คืบหน้าของแถบควรจะลดลง (ตามความยาวของคำนำหน้าคำต่อท้ายร้อยละและตัวละครเพิ่มเติมในสายนี้'\r%s |%s| %s%% %s'
Arleg

3
ที่จะได้รับการทำงานในบาง IDEs (เช่น PyCharm ใน Windows) คุณอาจจะต้องมีการเปลี่ยนแปลงไปend = '\r' end = ''
thomas88wp

312

การเขียน '\ r' จะย้ายเคอร์เซอร์กลับไปที่จุดเริ่มต้นของบรรทัด

สิ่งนี้แสดงตัวนับเปอร์เซ็นต์:

import time
import sys

for i in range(100):
    time.sleep(1)
    sys.stdout.write("\r%d%%" % i)
    sys.stdout.flush()

3
วางแล้ววิ่ง มันพิมพ์ไปยังบรรทัดใหม่ในแต่ละครั้ง ฉันต้องการหมายเลขที่จะอัพเดทในบรรทัดเดียวกัน :)
bobber205

8
ตัวอย่างนี้ยังสร้าง OBOB ซึ่งจะสิ้นสุดในการโหลดที่99%
Glenn Dayton

10
@moose ย่อมาจาก "Off by one bug"
Glenn Dayton

3
printมีendข้อโต้แย้ง: stackoverflow.com/a/8436827/1959808
Ioannis Filippidis

3
ในการเพิ่มสิ่งที่ @IoannisFilippidis กล่าวว่าprintนอกจากนี้ยังมีflushข้อโต้แย้ง: docs.python.org/3/library/functions.html#print
WSO

189

tqdm: เพิ่มเครื่องวัดความคืบหน้าให้กับลูปของคุณในไม่กี่วินาที :

>>> import time
>>> from tqdm import tqdm
>>> for i in tqdm(range(100)):
...     time.sleep(1)
... 
|###-------| 35/100  35% [elapsed: 00:35 left: 01:05,  1.00 iters/sec]

tqdm เซสชันเซสชั่น


คุณใช้เปลือกหลามแบบไหน?
xotonic

1
@xotonic การเชื่อมโยงบอกว่ามันเป็นptpython
jfs

113

เขียน\rไปยังคอนโซล นั่นคือ"carriage return"ซึ่งทำให้ข้อความทั้งหมดหลังจากนั้นถูกสะท้อนที่จุดเริ่มต้นของบรรทัด สิ่งที่ต้องการ:

def update_progress(progress):
    print '\r[{0}] {1}%'.format('#'*(progress/10), progress)

ซึ่งจะทำให้คุณชอบ: [ ########## ] 100%


19
ทำ\rแล้วเขียนบรรทัดทั้งหมดอีกครั้ง โดยทั่วไป: จะอยู่print("\rProgress: [{0:50s}] {1:.1f}%".format('#' * int(amtDone * 50), amtDone * 100))ที่ไหนamtDoneระหว่าง 0 ถึง 1
Mike DeSimone

13
ดีกว่าที่จะใช้งานมากกว่าsys.stdout.write printกับprintฉันได้รับการขึ้นบรรทัดใหม่
Gates Bates

14
เพิ่มจุลภาค,ต่อท้ายprintผลงานให้ฉัน
Chunliang Lyu

10
ใน python3 ให้ใช้ print (.... , end = '') แล้วคุณจะไม่มี newlines
graywolf

7
การสรุปสำหรับ Python3 ในอดีต contribs: print("\rProgress: [{0:50s}] {1:.1f}%".format('#' * int(workdone * 50), workdone*100), end="", flush=True)ซึ่งworkdoneจะลอยระหว่าง 0 และ 1 เช่นworkdone = parsed_dirs/total_dirs
khyox

70

มันเป็นรหัสน้อยกว่า 10 บรรทัด

ส่วนสำคัญที่นี่: https://gist.github.com/vladignatyev/06860ec2040cb497f0f3

import sys


def progress(count, total, suffix=''):
    bar_len = 60
    filled_len = int(round(bar_len * count / float(total)))

    percents = round(100.0 * count / float(total), 1)
    bar = '=' * filled_len + '-' * (bar_len - filled_len)

    sys.stdout.write('[%s] %s%s ...%s\r' % (bar, percents, '%', suffix))
    sys.stdout.flush()  # As suggested by Rom Ruben

ป้อนคำอธิบายรูปภาพที่นี่


2
เพิ่ม "sys.stdout.flush ()" ที่ท้ายฟังก์ชั่น
romruben

สำหรับฉันมันไปในบรรทัดใหม่
จีเอ็ม

@GM คุณใช้ระบบปฏิบัติการ / แพลตฟอร์มอะไร
Vladimir Ignatyev

ฉันไม่รู้ว่าทำไมถ้าฉันเรียกใช้จาก spyder ide มันไม่ทำงาน แต่ถ้าฉันเรียกใช้จาก ipython console มันใช้งานได้!
GM

62

ลองคลิกไลบรารีที่เขียนโดย Mozart of Python, Armin Ronacher

$ pip install click # both 2 and 3 compatible

วิธีสร้างแถบความคืบหน้าอย่างง่าย:

import click

with click.progressbar(range(1000000)) as bar:
    for i in bar:
        pass 

นี่คือสิ่งที่ดูเหมือนว่า:

# [###-------------------------------]    9%  00:01:14

ปรับแต่งให้เข้ากับเนื้อหาใจของคุณ:

import click, sys

with click.progressbar(range(100000), file=sys.stderr, show_pos=True, width=70, bar_template='(_(_)=%(bar)sD(_(_| %(info)s', fill_char='=', empty_char=' ') as bar:
    for i in bar:
        pass

รูปลักษณ์ที่กำหนดเอง:

(_(_)===================================D(_(_| 100000/100000 00:00:02

มีตัวเลือกเพิ่มเติมให้ดูเอกสาร API :

 click.progressbar(iterable=None, length=None, label=None, show_eta=True, show_percent=None, show_pos=False, item_show_func=None, fill_char='#', empty_char='-', bar_template='%(label)s [%(bar)s] %(info)s', info_sep=' ', width=36, file=None, color=None)

33

ฉันรู้ว่าฉันมาสายเกม แต่นี่เป็นสไตล์ยำเล็กน้อย (Red Hat) ที่ฉันเขียน (ไม่ใช่เพื่อความถูกต้อง 100% ที่นี่ แต่ถ้าคุณใช้แถบความคืบหน้าเพื่อความแม่นยำระดับนั้น ผิดพลาดอยู่ดี):

import sys

def cli_progress_test(end_val, bar_length=20):
    for i in xrange(0, end_val):
        percent = float(i) / end_val
        hashes = '#' * int(round(percent * bar_length))
        spaces = ' ' * (bar_length - len(hashes))
        sys.stdout.write("\rPercent: [{0}] {1}%".format(hashes + spaces, int(round(percent * 100))))
        sys.stdout.flush()

ควรสร้างสิ่งที่มีลักษณะเช่นนี้:

Percent: [##############      ] 69%

... ที่วงเล็บอยู่กับที่และจะเพิ่มเฉพาะแฮชเท่านั้น

สิ่งนี้อาจทำงานได้ดีขึ้นในฐานะมัณฑนากร อีกวัน ...


2
สุดยอดทางออก! ทำงานได้อย่างสมบูรณ์แบบ! ขอบคุณมาก!
Vasilije Bursac

18

ตรวจสอบห้องสมุดนี้: clint

มันมีคุณสมบัติมากมายรวมถึงแถบความคืบหน้า:

from time import sleep  
from random import random  
from clint.textui import progress  
if __name__ == '__main__':
    for i in progress.bar(range(100)):
        sleep(random() * 0.2)

    for i in progress.dots(range(100)):
        sleep(random() * 0.2)

ลิงค์นี้ให้ภาพรวมอย่างรวดเร็วของคุณสมบัติต่างๆ


12

นี่เป็นตัวอย่างที่ดีของแถบความก้าวหน้าที่เขียนด้วย Python: http://nadiana.com/animated-terminal-progress-bar-in-python

แต่ถ้าคุณต้องการที่จะเขียนมันเอง คุณสามารถใช้cursesโมดูลเพื่อทำให้ง่ายขึ้น :)

[แก้ไข] อาจจะง่ายกว่าไม่ใช่คำสำหรับคำสาป แต่ถ้าคุณต้องการสร้างตัวละครที่เต็มไปด้วยคำสาปมากกว่าคำสาปจะคอยดูแลเรื่องต่าง ๆ มากมายสำหรับคุณ

[แก้ไข] เนื่องจากลิงก์เก่าตายไปฉันได้วาง Python Progressbar เวอร์ชันของฉันเองเอามาที่นี่: https://github.com/WoLpH/python-progressbar


14
curses? ง่าย? อืม ....
aviraldg

บทความดีผมก็จะให้การเชื่อมโยงกับมัน แต่ไม่พบในที่คั่นหน้าของฉัน :)
แอนดี้ Mikhaylenko

@Aviral Dasgupta: ยุติธรรมพอง่ายกว่าอาจไม่ใช่คำที่เหมาะสมที่นี่ มันสามารถช่วยคุณประหยัดงานได้มาก แต่ก็ขึ้นอยู่กับสิ่งที่คุณกำลังมองหา
Wolph

ไม่ได้มองหาสิ่งที่เกี่ยวข้องกับเรื่องนี้ แต่ขอขอบคุณ :)
bobber205

2
ลิงก์ Dead นั่นคือราคาที่ไม่โพสต์เนื้อหา link'ed ในคำตอบของคุณ -__-
ThorSummoner

11
import time,sys

for i in range(100+1):
    time.sleep(0.1)
    sys.stdout.write(('='*i)+(''*(100-i))+("\r [ %d"%i+"% ] "))
    sys.stdout.flush()

เอาท์พุต

[29%] ===================


7

และเพื่อเพิ่มไปยังกองนี่เป็นวัตถุที่คุณสามารถใช้ได้

import sys

class ProgressBar(object):
    DEFAULT_BAR_LENGTH = 65
    DEFAULT_CHAR_ON  = '='
    DEFAULT_CHAR_OFF = ' '

    def __init__(self, end, start=0):
        self.end    = end
        self.start  = start
        self._barLength = self.__class__.DEFAULT_BAR_LENGTH

        self.setLevel(self.start)
        self._plotted = False

    def setLevel(self, level):
        self._level = level
        if level < self.start:  self._level = self.start
        if level > self.end:    self._level = self.end

        self._ratio = float(self._level - self.start) / float(self.end - self.start)
        self._levelChars = int(self._ratio * self._barLength)

    def plotProgress(self):
        sys.stdout.write("\r  %3i%% [%s%s]" %(
            int(self._ratio * 100.0),
            self.__class__.DEFAULT_CHAR_ON  * int(self._levelChars),
            self.__class__.DEFAULT_CHAR_OFF * int(self._barLength - self._levelChars),
        ))
        sys.stdout.flush()
        self._plotted = True

    def setAndPlot(self, level):
        oldChars = self._levelChars
        self.setLevel(level)
        if (not self._plotted) or (oldChars != self._levelChars):
            self.plotProgress()

    def __add__(self, other):
        assert type(other) in [float, int], "can only add a number"
        self.setAndPlot(self._level + other)
        return self
    def __sub__(self, other):
        return self.__add__(-other)
    def __iadd__(self, other):
        return self.__add__(other)
    def __isub__(self, other):
        return self.__add__(-other)

    def __del__(self):
        sys.stdout.write("\n")

if __name__ == "__main__":
    import time
    count = 150
    print "starting things:"

    pb = ProgressBar(count)

    #pb.plotProgress()
    for i in range(0, count):
        pb += 1
        #pb.setAndPlot(i + 1)
        time.sleep(0.01)
    del pb

    print "done"

ผลลัพธ์ใน:

starting things:
  100% [=================================================================]
done

โดยทั่วไปจะถือว่าเป็น "อยู่ด้านบน" แต่จะมีประโยชน์เมื่อคุณใช้งานบ่อย


ขอบคุณสำหรับสิ่งนี้. การแก้ไขเล็กน้อยวิธี plotProgress ควรใช้บรรทัด sys.stdout.flush () มิฉะนั้นแถบความคืบหน้าอาจไม่สามารถวาดได้จนกว่างานจะเสร็จสมบูรณ์ (ตามที่เกิดขึ้นใน terminal mac)
osnoz

ฉันรักสิ่งนี้!!! ค่อนข้างใช้งานง่าย !!! Thankyou
Microos

7

ติดตั้งtqdm. ( pip install tqdm) และใช้มันดังต่อไปนี้:

import time
from tqdm import tqdm
for i in tqdm(range(1000)):
    time.sleep(0.01)

นั่นคือแถบความคืบหน้า 10 วินาทีที่จะแสดงผลออกมาในลักษณะนี้:

47%|██████████████████▊                     | 470/1000 [00:04<00:05, 98.61it/s]

6

รันที่บรรทัดคำสั่ง Python ( ไม่ได้อยู่ใน IDE หรือสภาพแวดล้อมการพัฒนา):

>>> import threading
>>> for i in range(50+1):
...   threading._sleep(0.5)
...   print "\r%3d" % i, ('='*i)+('-'*(50-i)),

ทำงานได้ดีบนระบบ Windows ของฉัน



4

ฉันใช้ความคืบหน้าจาก Reddit ฉันชอบเพราะสามารถพิมพ์ความคืบหน้าสำหรับทุกรายการในหนึ่งบรรทัดและไม่ควรลบงานพิมพ์ออกจากโปรแกรม

แก้ไข: ลิงก์ถาวร


1
ลิงก์ของคุณเสีย - บรรทัดจริงในซอร์สโค้ดคือ 1274 ไม่ใช่ 1124! ดังนั้นลิงค์ที่ถูกต้องคือลิงค์นี้: github.com/reddit/reddit/blob/master/r2/r2/lib/utils/ ......
Vladimir Ignatyev

ตัวแปรนี้มีการออกแบบที่ดีที่สุดในรสนิยมของฉัน: มันใช้ตัววนซ้ำและทำงานได้กับงานที่วัดได้ทุกชนิดมันแสดงเวลาที่ผ่านไป
Vladimir Ignatyev


3

จากคำตอบข้างต้นและคำถามที่คล้ายกันอื่น ๆ เกี่ยวกับแถบความคืบหน้าของ CLI ฉันคิดว่าฉันได้รับคำตอบทั่วไปสำหรับพวกเขาทั้งหมด ตรวจสอบได้ที่https://stackoverflow.com/a/15860757/2254146

โดยสรุปรหัสคือ:

import time, sys

# update_progress() : Displays or updates a console progress bar
## Accepts a float between 0 and 1. Any int will be converted to a float.
## A value under 0 represents a 'halt'.
## A value at 1 or bigger represents 100%
def update_progress(progress):
    barLength = 10 # Modify this to change the length of the progress bar
    status = ""
    if isinstance(progress, int):
        progress = float(progress)
    if not isinstance(progress, float):
        progress = 0
        status = "error: progress var must be float\r\n"
    if progress < 0:
        progress = 0
        status = "Halt...\r\n"
    if progress >= 1:
        progress = 1
        status = "Done...\r\n"
    block = int(round(barLength*progress))
    text = "\rPercent: [{0}] {1}% {2}".format( "#"*block + "-"*(barLength-block), progress*100, status)
    sys.stdout.write(text)
    sys.stdout.flush()

ดูเหมือนกับ

เปอร์เซ็นต์: [##########] 99.0%


3

ฉันขอแนะนำให้ใช้ tqdm - https://pypi.python.org/pypi/tqdm - ซึ่งทำให้ง่ายต่อการเปลี่ยน iterable หรือกระบวนการใด ๆ ให้เป็นแถบความคืบหน้าและจัดการกับการเทอร์มินัลที่จำเป็นทั้งหมด

จากเอกสาร: "tqdm สามารถรองรับ callbacks / hooks และการอัพเดทด้วยตนเองได้อย่างง่ายดายนี่คือตัวอย่างของ urllib"

import urllib
from tqdm import tqdm

def my_hook(t):
  """
  Wraps tqdm instance. Don't forget to close() or __exit__()
  the tqdm instance once you're done with it (easiest using `with` syntax).

  Example
  -------

  >>> with tqdm(...) as t:
  ...     reporthook = my_hook(t)
  ...     urllib.urlretrieve(..., reporthook=reporthook)

  """
  last_b = [0]

  def inner(b=1, bsize=1, tsize=None):
    """
    b  : int, optional
        Number of blocks just transferred [default: 1].
    bsize  : int, optional
        Size of each block (in tqdm units) [default: 1].
    tsize  : int, optional
        Total size (in tqdm units). If [default: None] remains unchanged.
    """
    if tsize is not None:
        t.total = tsize
    t.update((b - last_b[0]) * bsize)
    last_b[0] = b
  return inner

eg_link = 'http://www.doc.ic.ac.uk/~cod11/matryoshka.zip'
with tqdm(unit='B', unit_scale=True, miniters=1,
          desc=eg_link.split('/')[-1]) as t:  # all optional kwargs
    urllib.urlretrieve(eg_link, filename='/dev/null',
                       reporthook=my_hook(t), data=None)

3

ทางออกที่ง่ายมากคือการใส่รหัสนี้ลงในลูปของคุณ:

วางสิ่งนี้ลงในเนื้อความ (บนสุด) ของไฟล์ของคุณ:

import sys

ใส่สิ่งนี้ลงในเนื้อความของวงของคุณ:

sys.stdout.write("-") # prints a dash for each iteration of loop
sys.stdout.flush() # ensures bar is displayed incrementally

2
import sys
def progresssbar():
         for i in range(100):
            time.sleep(1)
            sys.stdout.write("%i\r" % i)

progressbar()

หมายเหตุ: หากคุณเรียกใช้ตัวเลือกนี้ในส่วนแทรกแบบโต้ตอบคุณจะได้รับหมายเลขพิเศษ


2

ฮ่า ๆ ฉันเพิ่งเขียนสิ่งทั้งหมดสำหรับ heres นี้รหัสเก็บไว้ในใจคุณไม่สามารถใช้ unicode เมื่อทำบล็อก ascii ฉันใช้ cp437

import os
import time
def load(left_side, right_side, length, time):
    x = 0
    y = ""
    print "\r"
    while x < length:
        space = length - len(y)
        space = " " * space
        z = left + y + space + right
        print "\r", z,
        y += "█"
        time.sleep(time)
        x += 1
    cls()

และคุณเรียกว่าอย่างนั้น

print "loading something awesome"
load("|", "|", 10, .01)

ดังนั้นมันจึงเป็นแบบนี้

loading something awesome
|█████     |

2

ด้วยคำแนะนำที่ดีข้างต้นฉันจะทำแถบความก้าวหน้า

อย่างไรก็ตามฉันต้องการที่จะชี้ให้เห็นข้อบกพร่องบางอย่าง

  1. ทุกครั้งที่แถบความคืบหน้าถูกล้างข้อมูลแถบนั้นจะเริ่มขึ้นบรรทัดใหม่

    print('\r[{0}]{1}%'.format('#' * progress* 10, progress))  

    แบบนี้:
    [] 0%
    [#] 10%
    [##] 20%
    [###] 30%

2. วงเล็บเหลี่ยม ']' และจำนวนเปอร์เซ็นต์ที่ด้านขวาเลื่อนไปทางขวาเมื่อ '###' ยาวขึ้น
3. ข้อผิดพลาดจะเกิดขึ้นหากนิพจน์ 'คืบหน้า / 10' ไม่สามารถส่งคืนจำนวนเต็ม

และรหัสต่อไปนี้จะแก้ไขปัญหาข้างต้น

def update_progress(progress, total):  
    print('\r[{0:10}]{1:>2}%'.format('#' * int(progress * 10 /total), progress), end='')

1

รหัสสำหรับแถบความคืบหน้าของโปรแกรมไพ ธ อน

import sys
import time

max_length = 5
at_length = max_length
empty = "-"
used = "%"

bar = empty * max_length

for i in range(0, max_length):
    at_length -= 1

    #setting empty and full spots
    bar = used * i
    bar = bar+empty * at_length

    #\r is carriage return(sets cursor position in terminal to start of line)
    #\0 character escape

    sys.stdout.write("[{}]\0\r".format(bar))
    sys.stdout.flush()

    #do your stuff here instead of time.sleep
    time.sleep(1)

sys.stdout.write("\n")
sys.stdout.flush()

1

ฉันเขียนแถบความคืบหน้าอย่างง่าย:

def bar(total, current, length=10, prefix="", filler="#", space=" ", oncomp="", border="[]", suffix=""):
    if len(border) != 2:
        print("parameter 'border' must include exactly 2 symbols!")
        return None

    print(prefix + border[0] + (filler * int(current / total * length) +
                                      (space * (length - int(current / total * length)))) + border[1], suffix, "\r", end="")
    if total == current:
        if oncomp:
            print(prefix + border[0] + space * int(((length - len(oncomp)) / 2)) +
                  oncomp + space * int(((length - len(oncomp)) / 2)) + border[1], suffix)
        if not oncomp:
            print(prefix + border[0] + (filler * int(current / total * length) +
                                        (space * (length - int(current / total * length)))) + border[1], suffix)

อย่างที่คุณเห็นมันมี: ความยาวของแถบคำนำหน้าและคำต่อท้ายตัวเติมช่องว่างข้อความในแถบบน 100% (oncomp) และเส้นขอบ

นี่คือตัวอย่าง:

from time import sleep, time
start_time = time()
for i in range(10):
    pref = str((i+1) * 10) + "% "
    complete_text = "done in %s sec" % str(round(time() - start_time))
    sleep(1)
    bar(10, i + 1, length=20, prefix=pref, oncomp=complete_text)

อยู่ระหว่างดำเนินการ:

30% [######              ]

เสร็จสมบูรณ์:

100% [   done in 9 sec   ] 

1

รวบรวมแนวคิดบางอย่างที่ฉันพบที่นี่และเพิ่มเวลาโดยประมาณที่เหลืออยู่:

import datetime, sys

start = datetime.datetime.now()

def print_progress_bar (iteration, total):

    process_duration_samples = []
    average_samples = 5

    end = datetime.datetime.now()

    process_duration = end - start

    if len(process_duration_samples) == 0:
        process_duration_samples = [process_duration] * average_samples

    process_duration_samples = process_duration_samples[1:average_samples-1] + [process_duration]
    average_process_duration = sum(process_duration_samples, datetime.timedelta()) / len(process_duration_samples)
    remaining_steps = total - iteration
    remaining_time_estimation = remaining_steps * average_process_duration

    bars_string = int(float(iteration) / float(total) * 20.)
    sys.stdout.write(
        "\r[%-20s] %d%% (%s/%s) Estimated time left: %s" % (
            '='*bars_string, float(iteration) / float(total) * 100,
            iteration,
            total,
            remaining_time_estimation
        ) 
    )
    sys.stdout.flush()
    if iteration + 1 == total:
        print 


# Sample usage

for i in range(0,300):
    print_progress_bar(i, 300)

1

สำหรับหลาม 3:

def progress_bar(current_value, total):
    increments = 50
    percentual = ((current_value/ total) * 100)
    i = int(percentual // (100 / increments ))
    text = "\r[{0: <{1}}] {2}%".format('=' * i, increments, percentual)
    print(text, end="\n" if percentual == 100 else "")

0

นี่คือรหัสที่ใช้งานได้และฉันทดสอบก่อนโพสต์:

import sys
def prg(prog, fillchar, emptchar):
    fillt = 0
    emptt = 20
    if prog < 100 and prog > 0:
        prog2 = prog/5
        fillt = fillt + prog2
        emptt = emptt - prog2
        sys.stdout.write("\r[" + str(fillchar)*fillt + str(emptchar)*emptt + "]" + str(prog) + "%")
        sys.stdout.flush()
    elif prog >= 100:
        prog = 100
        prog2 = prog/5
        fillt = fillt + prog2
        emptt = emptt - prog2
        sys.stdout.write("\r[" + str(fillchar)*fillt + str(emptchar)*emptt + "]" + str(prog) + "%" + "\nDone!")
        sys.stdout.flush()
    elif prog < 0:
        prog = 0
        prog2 = prog/5
        fillt = fillt + prog2
        emptt = emptt - prog2
        sys.stdout.write("\r[" + str(fillchar)*fillt + str(emptchar)*emptt + "]" + str(prog) + "%" + "\nHalted!")
        sys.stdout.flush()

ข้อดี:

  • แถบอักขระ 20 ตัว (1 ตัวสำหรับทุก ๆ 5 (จำนวนที่ฉลาด))
  • อักขระเติมที่กำหนดเอง
  • อักขระว่างเปล่าที่กำหนดเอง
  • หยุด (จำนวนต่ำกว่า 0 ใด ๆ )
  • เสร็จสิ้น (100 และหมายเลขใด ๆ ที่สูงกว่า 100)
  • ความคืบหน้านับ (0-100 (ด้านล่างและด้านบนใช้สำหรับฟังก์ชั่นพิเศษ))
  • เปอร์เซ็นต์เปอร์เซ็นต์ถัดจากแถบและเป็นบรรทัดเดียว

จุดด้อย:

  • รองรับจำนวนเต็มเท่านั้น (สามารถแก้ไขได้เพื่อสนับสนุนพวกเขาแม้ว่าโดยการแบ่งการหารจำนวนเต็มดังนั้นเพียงแค่เปลี่ยนprog2 = prog/5เป็นprog2 = int(prog/5))

0

นี่คือโซลูชัน Python 3 ของฉัน:

import time
for i in range(100):
    time.sleep(1)
    s = "{}% Complete".format(i)
    print(s,end=len(s) * '\b')

'\ b' เป็นแบ็กสแลชสำหรับอักขระแต่ละตัวในสตริงของคุณ สิ่งนี้ไม่ทำงานภายในหน้าต่าง Windows cmd


0

ฟังก์ชั่นจาก Greenstick สำหรับ 2.7:

def printProgressBar (iteration, total, prefix = '', suffix = '',decimals = 1, length = 100, fill = '#'):

percent = ("{0:." + str(decimals) + "f}").format(100 * (iteration / float(total)))
filledLength = int(length * iteration // total)
bar = fill * filledLength + '-' * (length - filledLength)
print'\r%s |%s| %s%% %s' % (prefix, bar, percent, suffix),
sys.stdout.flush()
# Print New Line on Complete                                                                                                                                                                                                              
if iteration == total:
    print()

0

แถบความคืบหน้าของโมดูลหลามเป็นตัวเลือกที่ดี นี่คือรหัสทั่วไปของฉัน:

import time
import progressbar

widgets = [
    ' ', progressbar.Percentage(),
    ' ', progressbar.SimpleProgress(format='(%(value_s)s of %(max_value_s)s)'),
    ' ', progressbar.Bar('>', fill='.'),
    ' ', progressbar.ETA(format_finished='- %(seconds)s  -', format='ETA: %(seconds)s', ),
    ' - ', progressbar.DynamicMessage('loss'),
    ' - ', progressbar.DynamicMessage('error'),
    '                          '
]

bar = progressbar.ProgressBar(redirect_stdout=True, widgets=widgets)
bar.start(100)
for i in range(100):
    time.sleep(0.1)
    bar.update(i + 1, loss=i / 100., error=i)
bar.finish()
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.