问题标签 [tqdm]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
24728 浏览

python - 使用多个栏

我想要两个独立的进度条。

这是一个最小的示例,如果我使用两个条,它们不会正确更新。相反,会创建新的条形图。

运行示例时。我得到类似的东西:

如图所示,更新无法正常工作并添加新条。是否有可能有两个独立的栏可以正确更新?

0 投票
2 回答
83812 浏览

python - 在 while 循环中使用 tqdm 进度条

我正在编写一个代码来模拟一个棋子在垄断板上转一百万次。我想要一个 tqdm 进度条,每次完成转盘时都会更新。

以下是我当前的代码。我正在使用一个while循环,当电路板的转数超过所需数量时它会停止。

0 投票
7 回答
18133 浏览

python - 如何显式“刷新” tqdm 进度条?

我经常看到,tqdm进度条被其他打印打破了,比如:

这里应该只显示 2 个进度条。尽管如此成功,一些文本的打印会以高百分比中断进度条,其余的会在之后打印出来。

是否有可能以某种方式“刷新”进度条?

我读过,默认情况下会tqdm打印stderr并尝试刷新它

但这没有帮助。

以上都是在 PyCharm 控制台模拟中发生的,所以可能与此有关。

0 投票
2 回答
990 浏览

python - (Python/tqdm) 使用 Pandas 时计时器全部为零

每当将文件加载到熊猫中时,我都会尝试显示进度条。但我得到的只是这个。

这是我正在使用的代码。
我正在根据我找到的一些示例导入 tqdm。

0 投票
1 回答
1179 浏览

jenkins - 如何让 tqdm 和 jenkins 玩得很好?

喜欢tqdm进度条,但是当我在 jenkins 上使用它时,我不断得到一堆奇怪的工件和标准输出中的过多膨胀(特别是,无处不在[A)。tqdm 中是否有一个秘密模式可以使它与 jenkins 很好地工作?无缝检测像 jenkins 这样的非交互式 shell 的奖励积分。这是我的典型输出:

0 投票
1 回答
3159 浏览

python - Python tqdm 类型错误:() 接受 1 个位置参数,但给出了 2 个

我尝试使用以下代码创建一个进度条来查看文件传输的进度。

我得到了这个错误:

0 投票
0 回答
1652 浏览

python - tqdm NameError:未定义全局名称“HTML”

我正在学习使用tqdm。我做了一个非常简单的测试用例,但遇到了NameError. 测试用例如下:

文件名是b.py,我运行:

发生错误,错误消息是:

我以为是因为我没有安装一个名为 的包HTML,所以我运行

sudo pip install HTML

它确实安装了一个HTML软件包。但是当我再次运行测试用例时,错误仍然存​​在。

这个例子有什么问题?我错过了其他包裹吗?谢谢大家帮助我!

0 投票
1 回答
254 浏览

python - 导入 tqdm 会禁用使用 termcolor 的文本格式

我认为我的问题与这个问题平行

我正在使用 termcolor 来格式化终端文本。termcolor基本上只是将您的字符串包装在终端然后解释的ANSI代码中。片段

绿色文字

工作正常,但导入 tqdm 会导致白色文本:

白色文字

ANSI 代码仍然存在,但终端不再解析它们。

tqdm不幸的是,在我的包裹中根深蒂固,所以我不能只是摆脱导入。程序包对改变行为的终端做了什么,我如何在需要时禁用它?

在 Windows 10 上使用 python 3.5、tqdm 4.15、PyCharm 2017.2.3

0 投票
1 回答
5980 浏览

python - Multiprocessing with multiple tqdm progress bars

I have multiple massive csv files I am processing in parallel. I'd like to have a progress bar for each file.

However, while I am displayed 5 bars, only the last one is being updated - seemingly by all processes at once. As I can't read the whole csv file into memory I am using filesize to display progress.

inputArg is the folder path ending with a number.

Any hint would be appreciated!

EDIT: I did check the other answer, but I explicitly said I want multiple progress bars, and that answer only gives you ONE. Hence, this is not a duplicate.

EDIT2: Here's what it looks like @bouteillebleu, I do get my bars, but only the last one is updated for some reason. Current progress bars

0 投票
1 回答
8745 浏览

python - 如何在 jupyter notebook 上制作嵌套的 tqdm 条

这是嵌套 tqdm 条的示例

我在 jupyter notebook 上试了一下,但它没有显示任何没有错误的东西!但是,它可以在 ipython 控制台上正常工作!