46

当我使用此代码迭代打开的文件时,我看不到 tqdm 进度条:

        with open(file_path, 'r') as f:
        for i, line in enumerate(tqdm(f)):
            if i >= start and i <= end:
                print("line #: %s" % i)
                for i in tqdm(range(0, line_size, batch_size)):
                    # pause if find a file naed pause at the currend dir
                    re_batch = {}
                    for j in range(batch_size):
                        re_batch[j] = re.search(line, last_span)

在这里使用 tqdm 的正确方法是什么?

4

4 回答 4

64

你在正确的轨道上。您正确使用了 tqdm,但在使用 tqdm 时没有打印循环内的每一行。您还需要在您的第一个 for 循环而不是其他循环上使用 tqdm,如下所示:

with open(file_path, 'r') as f:
    for i, line in enumerate(tqdm(f)):
        if i >= start and i <= end:
            for i in range(0, line_size, batch_size):
                # pause if find a file naed pause at the currend dir
                re_batch = {}
                for j in range(batch_size):
                    re_batch[j] = re.search(line, last_span)

关于在tqdm中使用enumerate及其用法的一些说明。

于 2018-03-14T15:15:33.397 回答
17

我也遇到了这个问题 - tqdm没有显示进度条,因为没有提供文件对象中的行数。

循环将for遍历行,读取直到遇到下一个换行符。

为了添加进度条tqdm,您首先需要扫描文件并计算行数,然后将其传递给 tqdm 作为total

from tqdm import tqdm

num_lines = sum(1 for line in open('myfile.txt','r'))
with open('myfile.txt','r') as f:
    for line in tqdm(f, total=num_lines):
        print(line)
于 2019-03-15T18:33:33.147 回答
7

我正在尝试对包含所有 Wikipedia 文章的文件执行相同的操作。所以我不想在开始处理之前计算总行数。它也是一个 bz2 压缩文件,所以解压缩行的 len 高估了在该迭代中读取的字节数,所以......

with tqdm(total=Path(filepath).stat().st_size) as pbar:
    with bz2.open(filepath) as fin:
        for line in fin:
            pbar.update(fin.tell() - pbar.n)
    
    # used this to figure out the attributes of the pbar instance
    # print(vars(pbar))

感谢Yohan Kuanke删除的答案。如果版主取消删除它,你可以抄袭我的。

于 2020-07-19T03:15:06.693 回答
3

在使用 读取文件的情况下readlines(),可以使用以下内容:

from tqdm import tqdm
with open(filename) as f:
    sentences = tqdm(f.readlines(),unit='MB')

可以相应unit='MB'地更改为“B”或“KB”或“GB”。

于 2020-08-26T14:17:00.210 回答