用于FTP下载的Python进度条不起作用

问题描述 投票:2回答:1

我正在尝试使用进度条显示FTP文件下载进度(ftplib),但进度无法正确更新。速度从高开始然后逐渐减小(低至字节)。几秒钟后进度条仍为0%时,下载结束。看来我没有正确更新进度,我不知道如何纠正这个问题。

我尝试使用Show FTP download progress in Python (ProgressBar)在这里找到pbar += len(data)的解决方案,但这给了我以下错误:

Traceback (most recent call last):                                                             ] ETA:  --:--:--   0.00  B/s
  File "ftp.py", line 38, in <module>
    ftp.retrbinary('RETR ' + file, file_write)
  File "/usr/lib/python3.5/ftplib.py", line 446, in retrbinary
    callback(data)
  File "ftp.py", line 29, in file_write
    pbar += len(data)
TypeError: unsupported operand type(s) for +=: 'ProgressBar' and 'int'

所以我通过将pbar.update(len(data))添加到我的file_write()函数并使其工作没有错误来调整它,但正如我所说的速度完全不正确,不断下降(直到它可能达到0)然后突然完成。

这是我的整个脚本:

from ftplib import FTP_TLS
import time

from progressbar import AnimatedMarker, Bar, BouncingBar, Counter, ETA, \
    AdaptiveETA, FileTransferSpeed, FormatLabel, Percentage, \
    ProgressBar, ReverseBar, RotatingMarker, \
    SimpleProgress, Timer, UnknownLength

ftp_host = 'domain.com'
ftp_port = 21
ftp_user = 'user'
ftp_pass = 'pass'

ftp = FTP_TLS()

ftp.connect(ftp_host, ftp_port)
ftp.login(ftp_user, ftp_pass)
ftp.cwd('/videos')

files = ftp.nlst()

widgets = ['Downloading: ', Percentage(), ' ', Bar(marker='#', \
            left='[',right=']'), ' ', ETA(), ' ', FileTransferSpeed()]

def file_write(data):
    localfile.write(data)
    global pbar
    pbar.update(len(data))
    #pbar += len(data)

for file in files:
    size = ftp.size(file)
    pbar = ProgressBar(widgets = widgets, maxval = size)
    pbar.start()

    localfile = open('/local/videos/' + file, 'wb')

    ftp.retrbinary('RETR ' + file, file_write)

    pbar.finish() 
    localfile.close()

ftp.quit()

任何帮助将非常感谢让这些代码像它应该的那样工作。

更新:

我进行了以下添加/更改并获得了正确的速度/进度条运动:

i = 0
def file_write(data):
    localfile.write(data)
    global pbar, i
    pbar.update(i * 1024 * 10)
    i+=1
    #pbar += len(data)

但正如它即将完成我得到这个错误:

Traceback (most recent call last):################################################## ] ETA:  0:00:00  45.62 MB/s
  File "ftp.py", line 42, in <module>
    ftp.retrbinary('RETR ' + file, file_write)
  File "/usr/lib/python3.5/ftplib.py", line 446, in retrbinary
    callback(data)
  File "ftp.py", line 30, in file_write
    pbar.update(o * 1024 * 10)
  File "/usr/local/lib/python3.5/dist-packages/progressbar/progressbar.py", line 250, in update
    raise ValueError('Value out of range')
ValueError: Value out of range

我正在使用progressbar 2.5(最新)和Python 3.5。

python ftp progress-bar ftplib
1个回答
0
投票

代码实际上是针对progressbar2 library的。

它的ProgressBar class实施__iadd__

© www.soinside.com 2019 - 2024. All rights reserved.