2015-10-11 17:11:45 +00:00
|
|
|
|
|Logo|
|
|
|
|
|
|
|
|
|
|
tqdm
|
|
|
|
|
====
|
|
|
|
|
|
2016-08-17 16:33:15 +00:00
|
|
|
|
|PyPI-Status| |PyPI-Versions|
|
2016-04-25 21:15:26 +00:00
|
|
|
|
|
2016-05-19 07:23:15 +00:00
|
|
|
|
|Build-Status| |Coverage-Status| |Branch-Coverage-Status|
|
2015-10-11 17:11:45 +00:00
|
|
|
|
|
2016-08-17 16:33:15 +00:00
|
|
|
|
|DOI-URI| |LICENCE|
|
2016-04-25 21:15:26 +00:00
|
|
|
|
|
|
|
|
|
|
2015-11-09 12:14:07 +00:00
|
|
|
|
``tqdm`` (read taqadum, تقدّم) means "progress" in arabic.
|
2015-10-11 17:11:45 +00:00
|
|
|
|
|
2015-12-05 15:44:27 +00:00
|
|
|
|
Instantly make your loops show a smart progress meter - just wrap any
|
2016-08-16 13:45:12 +00:00
|
|
|
|
iterable with ``tqdm(iterable)``, and you're done!
|
2015-10-11 17:11:45 +00:00
|
|
|
|
|
2015-10-11 17:18:30 +00:00
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
|
|
from tqdm import tqdm
|
2015-10-12 16:30:24 +00:00
|
|
|
|
for i in tqdm(range(9)):
|
2015-10-11 17:18:30 +00:00
|
|
|
|
...
|
|
|
|
|
|
2015-10-11 17:11:45 +00:00
|
|
|
|
Here's what the output looks like:
|
|
|
|
|
|
2016-07-23 13:09:42 +00:00
|
|
|
|
``76%|████████████████████████████ | 7568/10000 [00:33<00:10, 229.00it/s]``
|
2015-10-11 17:11:45 +00:00
|
|
|
|
|
2015-11-09 12:14:07 +00:00
|
|
|
|
``trange(N)`` can be also used as a convenient shortcut for
|
|
|
|
|
``tqdm(xrange(N))``.
|
2015-10-11 17:11:45 +00:00
|
|
|
|
|
|
|
|
|
|Screenshot|
|
2016-08-16 13:45:12 +00:00
|
|
|
|
Screenshot using `bpython <http://www.bpython-interpreter.org/>`__
|
2015-10-11 17:11:45 +00:00
|
|
|
|
|
2016-04-03 18:36:56 +00:00
|
|
|
|
It can also be executed as a module with pipes:
|
|
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
2016-04-23 00:05:49 +00:00
|
|
|
|
$ seq 9999999 | tqdm --unit_scale | wc -l
|
2016-04-03 18:36:56 +00:00
|
|
|
|
10.0Mit [00:02, 3.58Mit/s]
|
|
|
|
|
9999999
|
|
|
|
|
|
2016-04-25 21:15:26 +00:00
|
|
|
|
Overhead is low -- about 60ns per iteration (80ns with ``tqdm_gui``), and is
|
2015-12-26 04:33:34 +00:00
|
|
|
|
unit tested against performance regression.
|
2015-10-11 17:11:45 +00:00
|
|
|
|
By comparison, the well established
|
2015-12-23 16:12:50 +00:00
|
|
|
|
`ProgressBar <https://github.com/niltonvolpato/python-progressbar>`__ has
|
2015-12-05 15:44:27 +00:00
|
|
|
|
an 800ns/iter overhead.
|
|
|
|
|
|
|
|
|
|
In addition to its low overhead, ``tqdm`` uses smart algorithms to predict
|
2015-12-25 10:15:34 +00:00
|
|
|
|
the remaining time and to skip unnecessary iteration displays, which allows
|
2015-12-05 15:44:27 +00:00
|
|
|
|
for a negligible overhead in most cases.
|
2015-10-11 17:11:45 +00:00
|
|
|
|
|
2015-12-29 15:37:02 +00:00
|
|
|
|
``tqdm`` works on any platform (Linux, Windows, Mac, FreeBSD, Solaris/SunOS),
|
|
|
|
|
in any console or in a GUI, and is also friendly with IPython/Jupyter notebooks.
|
2015-10-23 21:52:26 +00:00
|
|
|
|
|
2015-12-17 20:53:39 +00:00
|
|
|
|
``tqdm`` does not require any library (not even curses!) to run, just a
|
2015-12-26 04:33:34 +00:00
|
|
|
|
vanilla Python interpreter will do and an environment supporting ``carriage
|
|
|
|
|
return \r`` and ``line feed \n`` control characters.
|
2015-12-01 20:11:07 +00:00
|
|
|
|
|
2015-12-03 02:11:31 +00:00
|
|
|
|
------------------------------------------
|
|
|
|
|
|
|
|
|
|
.. contents:: Table of contents
|
|
|
|
|
:backlinks: top
|
2015-12-03 02:15:46 +00:00
|
|
|
|
:local:
|
2015-10-12 16:30:24 +00:00
|
|
|
|
|
|
|
|
|
|
2015-10-11 17:11:45 +00:00
|
|
|
|
Installation
|
|
|
|
|
------------
|
|
|
|
|
|
2016-08-17 16:33:15 +00:00
|
|
|
|
Latest PyPI stable release
|
2015-10-11 17:18:30 +00:00
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2016-08-17 16:33:15 +00:00
|
|
|
|
|PyPI-Status|
|
2016-04-25 21:15:26 +00:00
|
|
|
|
|
2015-10-11 17:11:45 +00:00
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
|
|
pip install tqdm
|
2015-10-11 17:18:30 +00:00
|
|
|
|
|
|
|
|
|
Latest development release on github
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2016-08-17 16:33:15 +00:00
|
|
|
|
|GitHub-Status| |GitHub-Stars| |GitHub-Forks|
|
2016-04-25 21:15:26 +00:00
|
|
|
|
|
2015-10-11 17:18:30 +00:00
|
|
|
|
Pull and install in the current directory:
|
|
|
|
|
|
2015-10-11 17:29:33 +00:00
|
|
|
|
.. code:: sh
|
2015-10-11 20:07:12 +00:00
|
|
|
|
|
2015-10-11 17:11:45 +00:00
|
|
|
|
pip install -e git+https://github.com/tqdm/tqdm.git@master#egg=tqdm
|
|
|
|
|
|
2015-10-12 16:30:24 +00:00
|
|
|
|
|
2016-01-23 01:10:19 +00:00
|
|
|
|
Changelog
|
|
|
|
|
---------
|
2016-01-25 07:55:34 +00:00
|
|
|
|
|
2016-08-17 16:33:15 +00:00
|
|
|
|
The list of all changes is available either on GitHub's Releases:
|
|
|
|
|
|GitHub-Status| or on crawlers such as
|
2016-01-23 01:10:19 +00:00
|
|
|
|
`allmychanges.com <https://allmychanges.com/p/python/tqdm/>`_.
|
|
|
|
|
|
|
|
|
|
|
2015-12-03 01:22:18 +00:00
|
|
|
|
Usage
|
2015-12-05 15:44:27 +00:00
|
|
|
|
-----
|
2015-12-03 01:22:18 +00:00
|
|
|
|
|
2015-12-05 15:44:27 +00:00
|
|
|
|
``tqdm`` is very versatile and can be used in a number of ways.
|
2016-04-03 18:36:56 +00:00
|
|
|
|
The three main ones are given below.
|
2015-12-03 01:22:18 +00:00
|
|
|
|
|
|
|
|
|
Iterable-based
|
|
|
|
|
~~~~~~~~~~~~~~
|
|
|
|
|
|
2015-12-05 15:44:27 +00:00
|
|
|
|
Wrap ``tqdm()`` around any iterable:
|
2015-12-03 01:22:18 +00:00
|
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
2016-01-21 18:11:35 +00:00
|
|
|
|
text = ""
|
2015-12-03 01:22:18 +00:00
|
|
|
|
for char in tqdm(["a", "b", "c", "d"]):
|
2016-01-21 18:11:35 +00:00
|
|
|
|
text = text + char
|
2015-12-03 01:22:18 +00:00
|
|
|
|
|
2015-12-05 15:44:27 +00:00
|
|
|
|
``trange(i)`` is a special optimised instance of ``tqdm(range(i))``:
|
2015-12-03 01:22:18 +00:00
|
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
|
|
for i in trange(100):
|
|
|
|
|
pass
|
|
|
|
|
|
2015-12-05 15:44:27 +00:00
|
|
|
|
Instantiation outside of the loop allows for manual control over ``tqdm()``:
|
2015-12-03 01:22:18 +00:00
|
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
|
|
pbar = tqdm(["a", "b", "c", "d"])
|
|
|
|
|
for char in pbar:
|
|
|
|
|
pbar.set_description("Processing %s" % char)
|
|
|
|
|
|
|
|
|
|
Manual
|
2015-12-05 15:44:27 +00:00
|
|
|
|
~~~~~~
|
2015-12-03 01:22:18 +00:00
|
|
|
|
|
2015-12-05 15:44:27 +00:00
|
|
|
|
Manual control on ``tqdm()`` updates by using a ``with`` statement:
|
2015-12-03 01:22:18 +00:00
|
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
|
|
with tqdm(total=100) as pbar:
|
|
|
|
|
for i in range(10):
|
|
|
|
|
pbar.update(10)
|
|
|
|
|
|
2015-12-05 15:44:27 +00:00
|
|
|
|
If the optional variable ``total`` (or an iterable with ``len()``) is
|
|
|
|
|
provided, predictive stats are displayed.
|
2015-12-03 01:22:18 +00:00
|
|
|
|
|
2015-12-05 15:44:27 +00:00
|
|
|
|
``with`` is also optional (you can just assign ``tqdm()`` to a variable,
|
2016-01-25 08:28:59 +00:00
|
|
|
|
but in this case don't forget to ``del`` or ``close()`` at the end:
|
2015-12-03 01:22:18 +00:00
|
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
2015-12-25 10:15:34 +00:00
|
|
|
|
pbar = tqdm(total=100)
|
2015-12-03 01:22:18 +00:00
|
|
|
|
for i in range(10):
|
|
|
|
|
pbar.update(10)
|
|
|
|
|
pbar.close()
|
2015-10-12 16:30:24 +00:00
|
|
|
|
|
2016-04-03 18:36:56 +00:00
|
|
|
|
Module
|
|
|
|
|
~~~~~~
|
|
|
|
|
|
2016-04-03 20:18:49 +00:00
|
|
|
|
Perhaps the most wonderful use of ``tqdm`` is in a script or on the command
|
|
|
|
|
line. Simply inserting ``tqdm`` (or ``python -m tqdm``) between pipes will pass
|
|
|
|
|
through all ``stdin`` to ``stdout`` while printing progress to ``stderr``.
|
2016-04-03 18:36:56 +00:00
|
|
|
|
|
|
|
|
|
The example below demonstrated counting the number of lines in all python files
|
|
|
|
|
in the current directory, with timing information included.
|
|
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
|
|
$ time find . -name '*.py' -exec cat \{} \; | wc -l
|
2016-04-03 20:18:49 +00:00
|
|
|
|
857365
|
2016-04-03 18:36:56 +00:00
|
|
|
|
|
2016-04-03 20:18:49 +00:00
|
|
|
|
real 0m3.458s
|
|
|
|
|
user 0m0.274s
|
|
|
|
|
sys 0m3.325s
|
2016-04-03 18:36:56 +00:00
|
|
|
|
|
2016-04-03 20:18:49 +00:00
|
|
|
|
$ time find . -name '*.py' -exec cat \{} \; | tqdm | wc -l
|
|
|
|
|
857366it [00:03, 246471.31it/s]
|
|
|
|
|
857365
|
2016-04-03 18:36:56 +00:00
|
|
|
|
|
2016-04-03 20:18:49 +00:00
|
|
|
|
real 0m3.585s
|
|
|
|
|
user 0m0.862s
|
|
|
|
|
sys 0m3.358s
|
2016-04-03 18:36:56 +00:00
|
|
|
|
|
2016-04-03 20:18:49 +00:00
|
|
|
|
Note that the usual arguments for ``tqdm`` can also be specified.
|
2016-04-03 18:36:56 +00:00
|
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
|
|
$ find . -name '*.py' -exec cat \{} \; |
|
2016-04-23 00:05:49 +00:00
|
|
|
|
tqdm --unit loc --unit_scale --total 857366 >> /dev/null
|
2016-04-03 20:18:49 +00:00
|
|
|
|
100%|███████████████████████████████████| 857K/857K [00:04<00:00, 246Kloc/s]
|
2016-04-03 18:36:56 +00:00
|
|
|
|
|
2016-04-23 00:05:49 +00:00
|
|
|
|
Backing up a large directory?
|
|
|
|
|
|
|
|
|
|
.. code:: sh
|
|
|
|
|
|
|
|
|
|
$ 7z a -bd -r backup.7z docs/ | grep Compressing |
|
|
|
|
|
tqdm --total $(find docs/ -type f | wc -l) --unit files >> backup.log
|
|
|
|
|
100%|███████████████████████████████▉| 8014/8014 [01:37<00:00, 82.29files/s]
|
|
|
|
|
|
2016-04-03 18:36:56 +00:00
|
|
|
|
|
2016-07-20 20:27:38 +00:00
|
|
|
|
Help!
|
|
|
|
|
-----
|
|
|
|
|
|
|
|
|
|
The most common issues relate to excessive output on multiple lines, instead
|
|
|
|
|
of a neat one-line progress bar.
|
|
|
|
|
|
|
|
|
|
- Consoles in general: require support for carriage return (``CR``, ``\r``).
|
2016-07-20 20:32:29 +00:00
|
|
|
|
- Nested progress bars:
|
|
|
|
|
* Consoles in general: require support for moving cursors up to the
|
|
|
|
|
previous line. For example, `IDLE won't work <https://github.com/tqdm/tqdm/issues/191#issuecomment-230168030>`__.
|
|
|
|
|
* Windows: additionally may require the python module ``colorama``.
|
2016-07-20 20:27:38 +00:00
|
|
|
|
- Wrapping enumerated iterables: use ``enumerate(tqdm(...))`` instead of
|
|
|
|
|
``tqdm(enumerate(...))``. The same applies to ``numpy.ndenumerate``.
|
|
|
|
|
This is because enumerate functions tend to hide the length of iterables.
|
2016-07-20 20:32:29 +00:00
|
|
|
|
``tqdm`` does not.
|
2016-07-20 20:27:38 +00:00
|
|
|
|
|
2016-07-20 20:32:29 +00:00
|
|
|
|
If you come across any other difficulties, browse/open issues
|
|
|
|
|
`here <https://github.com/tqdm/tqdm/issues?q=is%3Aissue>`__.
|
2016-07-20 20:27:38 +00:00
|
|
|
|
|
2015-10-11 17:11:45 +00:00
|
|
|
|
Documentation
|
|
|
|
|
-------------
|
|
|
|
|
|
2016-08-17 16:33:15 +00:00
|
|
|
|
|PyPI-Versions| |README-Hits| (Since 19 May 2016)
|
2016-04-25 21:15:26 +00:00
|
|
|
|
|
2015-10-11 17:11:45 +00:00
|
|
|
|
.. code:: python
|
|
|
|
|
|
2015-10-13 19:35:43 +00:00
|
|
|
|
class tqdm(object):
|
2015-10-18 21:11:35 +00:00
|
|
|
|
"""
|
|
|
|
|
Decorate an iterable object, returning an iterator which acts exactly
|
2015-12-25 10:15:34 +00:00
|
|
|
|
like the original iterable, but prints a dynamically updating
|
2015-10-18 21:11:35 +00:00
|
|
|
|
progressbar every time a value is requested.
|
|
|
|
|
"""
|
|
|
|
|
|
2016-01-25 08:28:59 +00:00
|
|
|
|
def __init__(self, iterable=None, desc=None, total=None, leave=True,
|
2015-12-27 17:43:46 +00:00
|
|
|
|
file=sys.stderr, ncols=None, mininterval=0.1,
|
2016-01-22 22:51:37 +00:00
|
|
|
|
maxinterval=10.0, miniters=None, ascii=None, disable=False,
|
|
|
|
|
unit='it', unit_scale=False, dynamic_ncols=False,
|
|
|
|
|
smoothing=0.3, bar_format=None, initial=0, position=None):
|
2015-11-09 12:25:11 +00:00
|
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
|
~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* iterable : iterable, optional
|
|
|
|
|
Iterable to decorate with a progressbar.
|
2016-04-23 00:05:49 +00:00
|
|
|
|
Leave blank to manually manage the updates.
|
2015-11-09 12:25:11 +00:00
|
|
|
|
* desc : str, optional
|
2016-04-23 00:05:49 +00:00
|
|
|
|
Prefix for the progressbar.
|
2015-11-09 12:25:11 +00:00
|
|
|
|
* total : int, optional
|
2016-04-23 00:05:49 +00:00
|
|
|
|
The number of expected iterations. If (default: None),
|
|
|
|
|
len(iterable) is used if possible. As a last resort, only basic
|
|
|
|
|
progress statistics are displayed (no ETA, no progressbar).
|
|
|
|
|
If `gui` is True and this parameter needs subsequent updating,
|
|
|
|
|
specify an initial arbitrary large positive integer,
|
|
|
|
|
e.g. int(9e9).
|
2015-11-09 12:25:11 +00:00
|
|
|
|
* leave : bool, optional
|
2016-04-08 15:45:01 +00:00
|
|
|
|
If [default: True], keeps all traces of the progressbar
|
2015-11-09 12:25:11 +00:00
|
|
|
|
upon termination of iteration.
|
|
|
|
|
* file : `io.TextIOWrapper` or `io.StringIO`, optional
|
|
|
|
|
Specifies where to output the progress messages
|
|
|
|
|
[default: sys.stderr]. Uses `file.write(str)` and `file.flush()`
|
|
|
|
|
methods.
|
|
|
|
|
* ncols : int, optional
|
2015-11-28 20:27:43 +00:00
|
|
|
|
The width of the entire output message. If specified,
|
|
|
|
|
dynamically resizes the progressbar to stay within this bound.
|
2016-04-23 00:05:49 +00:00
|
|
|
|
If unspecified, attempts to use environment width. The
|
2015-11-28 20:27:43 +00:00
|
|
|
|
fallback is a meter width of 10 and no limit for the counter and
|
2015-11-09 12:25:11 +00:00
|
|
|
|
statistics. If 0, will not print any meter (only stats).
|
|
|
|
|
* mininterval : float, optional
|
|
|
|
|
Minimum progress update interval, in seconds [default: 0.1].
|
2016-04-03 18:36:56 +00:00
|
|
|
|
* maxinterval : float, optional
|
2015-11-28 02:35:46 +00:00
|
|
|
|
Maximum progress update interval, in seconds [default: 10.0].
|
2015-11-09 12:25:11 +00:00
|
|
|
|
* miniters : int, optional
|
2016-04-23 00:05:49 +00:00
|
|
|
|
Minimum progress update interval, in iterations.
|
2015-11-09 12:25:11 +00:00
|
|
|
|
If specified, will set `mininterval` to 0.
|
|
|
|
|
* ascii : bool, optional
|
2016-04-23 00:05:49 +00:00
|
|
|
|
If unspecified or False, use unicode (smooth blocks) to fill
|
2015-11-09 12:25:11 +00:00
|
|
|
|
the meter. The fallback is to use ASCII characters `1-9 #`.
|
2016-04-23 00:05:49 +00:00
|
|
|
|
* disable : bool, optional
|
2015-11-28 20:27:43 +00:00
|
|
|
|
Whether to disable the entire progressbar wrapper
|
|
|
|
|
[default: False].
|
2015-11-09 12:25:11 +00:00
|
|
|
|
* unit : str, optional
|
|
|
|
|
String that will be used to define the unit of each iteration
|
2016-04-03 18:36:56 +00:00
|
|
|
|
[default: it].
|
2015-11-09 12:25:11 +00:00
|
|
|
|
* unit_scale : bool, optional
|
|
|
|
|
If set, the number of iterations will be reduced/scaled
|
|
|
|
|
automatically and a metric prefix following the
|
|
|
|
|
International System of Units standard will be added
|
|
|
|
|
(kilo, mega, etc.) [default: False].
|
|
|
|
|
* dynamic_ncols : bool, optional
|
|
|
|
|
If set, constantly alters `ncols` to the environment (allowing
|
|
|
|
|
for window resizes) [default: False].
|
2016-04-23 00:05:49 +00:00
|
|
|
|
* smoothing : float, optional
|
2015-11-09 12:25:11 +00:00
|
|
|
|
Exponential moving average smoothing factor for speed estimates
|
2015-11-10 18:21:21 +00:00
|
|
|
|
(ignored in GUI mode). Ranges from 0 (average speed) to 1
|
2015-11-16 19:55:21 +00:00
|
|
|
|
(current/instantaneous speed) [default: 0.3].
|
2015-12-27 17:02:35 +00:00
|
|
|
|
* bar_format : str, optional
|
2015-12-27 05:31:52 +00:00
|
|
|
|
Specify a custom bar string formatting. May impact performance.
|
2016-04-23 00:05:49 +00:00
|
|
|
|
If unspecified, will use '{l_bar}{bar}{r_bar}', where l_bar is
|
2015-12-27 17:02:35 +00:00
|
|
|
|
'{desc}{percentage:3.0f}%|' and r_bar is
|
2016-04-23 00:05:49 +00:00
|
|
|
|
'| {n_fmt}/{total_fmt} [{elapsed_str}<{remaining_str}, {rate_fmt}]'
|
2016-04-03 18:36:56 +00:00
|
|
|
|
Possible vars: bar, n, n_fmt, total, total_fmt, percentage,
|
|
|
|
|
rate, rate_fmt, elapsed, remaining, l_bar, r_bar, desc.
|
|
|
|
|
* initial : int, optional
|
2015-12-27 17:43:46 +00:00
|
|
|
|
The initial counter value. Useful when restarting a progress
|
|
|
|
|
bar [default: 0].
|
2015-12-27 15:26:08 +00:00
|
|
|
|
* position : int, optional
|
2016-04-03 18:36:56 +00:00
|
|
|
|
Specify the line offset to print this bar (starting from 0)
|
2016-04-23 00:05:49 +00:00
|
|
|
|
Automatic if unspecified.
|
2016-04-03 18:36:56 +00:00
|
|
|
|
Useful to manage multiple bars at once (eg, from threads).
|
2016-05-14 16:11:23 +00:00
|
|
|
|
|
|
|
|
|
Extra CLI Options
|
|
|
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
* delim : chr, optional
|
|
|
|
|
Delimiting character [default: '\n']. Use '\0' for null.
|
|
|
|
|
N.B.: on Windows systems, Python converts '\n' to '\r\n'.
|
|
|
|
|
* buf_size : int, optional
|
|
|
|
|
String buffer size in bytes [default: 256]
|
|
|
|
|
used when `delim` is specified.
|
|
|
|
|
|
2015-11-09 12:25:11 +00:00
|
|
|
|
Returns
|
|
|
|
|
~~~~~~~
|
|
|
|
|
|
|
|
|
|
* out : decorated iterator.
|
|
|
|
|
|
|
|
|
|
.. code:: python
|
2015-10-18 21:11:35 +00:00
|
|
|
|
|
|
|
|
|
def update(self, n=1):
|
|
|
|
|
"""
|
|
|
|
|
Manually update the progress bar, useful for streams
|
|
|
|
|
such as reading files.
|
|
|
|
|
E.g.:
|
|
|
|
|
>>> t = tqdm(total=filesize) # Initialise
|
|
|
|
|
>>> for current_buffer in stream:
|
|
|
|
|
... ...
|
|
|
|
|
... t.update(len(current_buffer))
|
|
|
|
|
>>> t.close()
|
|
|
|
|
The last line is highly recommended, but possibly not necessary if
|
|
|
|
|
`t.update()` will be called in such a way that `filesize` will be
|
|
|
|
|
exactly reached and printed.
|
|
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
|
----------
|
|
|
|
|
n : int
|
|
|
|
|
Increment to add to the internal counter of iterations
|
|
|
|
|
[default: 1].
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def close(self):
|
|
|
|
|
"""
|
|
|
|
|
Cleanup and (if leave=False) close the progressbar.
|
|
|
|
|
"""
|
2015-10-11 17:11:45 +00:00
|
|
|
|
|
2016-01-31 19:29:05 +00:00
|
|
|
|
def clear(self):
|
|
|
|
|
"""
|
|
|
|
|
Clear current bar display
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def refresh(self):
|
|
|
|
|
"""
|
|
|
|
|
Force refresh the display of this bar
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def write(cls, s, file=sys.stdout, end="\n"):
|
|
|
|
|
"""
|
|
|
|
|
Print a message via tqdm (without overlap with bars)
|
|
|
|
|
"""
|
|
|
|
|
|
2015-11-11 20:19:55 +00:00
|
|
|
|
def trange(*args, **kwargs):
|
|
|
|
|
"""
|
|
|
|
|
A shortcut for tqdm(xrange(*args), **kwargs).
|
|
|
|
|
On Python3+ range is used instead of xrange.
|
|
|
|
|
"""
|
|
|
|
|
|
2015-11-11 10:23:20 +00:00
|
|
|
|
class tqdm_gui(tqdm):
|
|
|
|
|
"""
|
|
|
|
|
Experimental GUI version of tqdm!
|
|
|
|
|
"""
|
|
|
|
|
|
2015-11-11 20:19:55 +00:00
|
|
|
|
def tgrange(*args, **kwargs):
|
2015-10-11 17:11:45 +00:00
|
|
|
|
"""
|
2015-11-11 20:19:55 +00:00
|
|
|
|
Experimental GUI version of trange!
|
2015-10-11 17:11:45 +00:00
|
|
|
|
"""
|
|
|
|
|
|
2016-01-22 23:42:30 +00:00
|
|
|
|
class tqdm_notebook(tqdm):
|
|
|
|
|
"""
|
|
|
|
|
Experimental IPython/Jupyter Notebook widget using tqdm!
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def tnrange(*args, **kwargs):
|
|
|
|
|
"""
|
|
|
|
|
Experimental IPython/Jupyter Notebook widget using tqdm!
|
|
|
|
|
"""
|
|
|
|
|
|
2015-12-17 20:53:39 +00:00
|
|
|
|
|
2015-10-11 17:11:45 +00:00
|
|
|
|
Examples and Advanced Usage
|
2015-11-30 23:14:29 +00:00
|
|
|
|
---------------------------
|
2015-10-11 17:11:45 +00:00
|
|
|
|
|
2016-08-17 22:15:38 +00:00
|
|
|
|
- See the `examples <https://github.com/tqdm/tqdm/tree/master/examples>`__
|
|
|
|
|
folder;
|
|
|
|
|
- import the module and run ``help()``, or
|
|
|
|
|
- consult the `wiki <https://github.com/tqdm/tqdm/wiki>`__.
|
2016-09-15 02:08:42 +00:00
|
|
|
|
- this has an `excellent article <https://github.com/tqdm/tqdm/wiki/How-to-make-a-great-Progress-Bar>`__ on how to make a **great** progressbar.
|
2015-10-11 17:11:45 +00:00
|
|
|
|
|
2016-05-30 11:50:50 +00:00
|
|
|
|
Nested progress bars
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
``tqdm`` supports nested progress bars. Here's an example:
|
|
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
|
|
from tqdm import trange
|
|
|
|
|
from time import sleep
|
|
|
|
|
|
|
|
|
|
for i in trange(10, desc='1st loop'):
|
|
|
|
|
for j in trange(5, desc='2nd loop', leave=False):
|
|
|
|
|
for k in trange(100, desc='3nd loop'):
|
|
|
|
|
sleep(0.01)
|
|
|
|
|
|
|
|
|
|
On Windows `colorama <https://github.com/tartley/colorama>`__ will be used if
|
|
|
|
|
available to produce a beautiful nested display.
|
|
|
|
|
|
|
|
|
|
For manual control over positioning (e.g. for multi-threaded use),
|
|
|
|
|
you may specify `position=n` where `n=0` for the outermost bar,
|
|
|
|
|
`n=1` for the next, and so on.
|
|
|
|
|
|
2015-12-17 20:00:20 +00:00
|
|
|
|
Hooks and callbacks
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
``tqdm`` can easily support callbacks/hooks and manual updates.
|
|
|
|
|
Here's an example with ``urllib``:
|
|
|
|
|
|
|
|
|
|
**urllib.urlretrieve documentation**
|
|
|
|
|
|
|
|
|
|
| [...]
|
|
|
|
|
| If present, the hook function will be called once
|
|
|
|
|
| on establishment of the network connection and once after each
|
|
|
|
|
block read
|
|
|
|
|
| thereafter. The hook will be passed three arguments; a count of
|
|
|
|
|
blocks
|
|
|
|
|
| transferred so far, a block size in bytes, and the total size of
|
|
|
|
|
the file.
|
|
|
|
|
| [...]
|
|
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
|
|
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'
|
2016-04-23 00:05:49 +00:00
|
|
|
|
with tqdm(unit='B', unit_scale=True, miniters=1,
|
2015-12-17 20:00:20 +00:00
|
|
|
|
desc=eg_link.split('/')[-1]) as t: # all optional kwargs
|
|
|
|
|
urllib.urlretrieve(eg_link, filename='/dev/null',
|
|
|
|
|
reporthook=my_hook(t), data=None)
|
|
|
|
|
|
|
|
|
|
It is recommend to use ``miniters=1`` whenever there is potentially
|
|
|
|
|
large differences in iteration speed (e.g. downloading a file over
|
|
|
|
|
a patchy connection).
|
|
|
|
|
|
|
|
|
|
Pandas Integration
|
|
|
|
|
~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
Due to popular demand we've added support for ``pandas`` -- here's an example
|
2016-05-21 16:56:28 +00:00
|
|
|
|
for ``DataFrame.progress_apply`` and ``DataFrameGroupBy.progress_apply``:
|
2015-12-17 20:00:20 +00:00
|
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
|
|
import pandas as pd
|
|
|
|
|
import numpy as np
|
2016-07-23 15:27:46 +00:00
|
|
|
|
from tqdm import tqdm
|
2015-12-17 20:00:20 +00:00
|
|
|
|
|
|
|
|
|
df = pd.DataFrame(np.random.randint(0, 100, (100000, 6)))
|
|
|
|
|
|
2016-07-27 21:51:52 +00:00
|
|
|
|
# Register `pandas.progress_apply` and `pandas.Series.map_apply` with `tqdm`
|
2016-07-23 15:27:46 +00:00
|
|
|
|
# (can use `tqdm_gui`, `tqdm_notebook`, optional kwargs, etc.)
|
|
|
|
|
tqdm.pandas(desc="my bar!")
|
2015-12-17 20:00:20 +00:00
|
|
|
|
|
|
|
|
|
# Now you can use `progress_apply` instead of `apply`
|
2016-07-27 21:51:52 +00:00
|
|
|
|
# and `progress_map` instead of `map`
|
2016-05-21 16:56:28 +00:00
|
|
|
|
df.progress_apply(lambda x: x**2)
|
|
|
|
|
# can also groupby:
|
|
|
|
|
# df.groupby(0).progress_apply(lambda x: x**2)
|
2015-12-17 20:00:20 +00:00
|
|
|
|
|
|
|
|
|
In case you're interested in how this works (and how to modify it for your
|
2016-04-03 18:36:56 +00:00
|
|
|
|
own callbacks), see the
|
|
|
|
|
`examples <https://github.com/tqdm/tqdm/tree/master/examples>`__
|
2015-12-17 20:00:20 +00:00
|
|
|
|
folder or import the module and run ``help()``.
|
|
|
|
|
|
2016-05-04 23:52:12 +00:00
|
|
|
|
IPython/Jupyter Integration
|
2016-05-08 23:01:28 +00:00
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2016-05-04 23:52:12 +00:00
|
|
|
|
|
2016-04-25 21:15:26 +00:00
|
|
|
|
IPython/Jupyter is supported via the `tqdm_notebook` submodule:
|
2016-05-04 23:52:12 +00:00
|
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
|
|
from tqdm import tnrange, tqdm_notebook
|
|
|
|
|
from time import sleep
|
|
|
|
|
|
|
|
|
|
for i in tnrange(10, desc='1st loop'):
|
|
|
|
|
for j in tqdm_notebook(xrange(100), desc='2nd loop'):
|
|
|
|
|
sleep(0.01)
|
|
|
|
|
|
|
|
|
|
In addition to `tqdm` features, the submodule provides a native Jupyter
|
|
|
|
|
widget (compatible with IPython v1-v4 and Jupyter), fully working nested bars
|
|
|
|
|
and color hints (blue: normal, green: completed, red: error/interrupt,
|
2016-04-25 21:15:26 +00:00
|
|
|
|
light blue: no ETA); as demonstrated below.
|
2016-05-04 23:52:12 +00:00
|
|
|
|
|
2016-05-08 23:01:28 +00:00
|
|
|
|
|Screenshot-Jupyter1|
|
|
|
|
|
|Screenshot-Jupyter2|
|
|
|
|
|
|Screenshot-Jupyter3|
|
|
|
|
|
|
2016-01-31 19:29:05 +00:00
|
|
|
|
Writing messages
|
2016-05-30 11:50:50 +00:00
|
|
|
|
~~~~~~~~~~~~~~~~
|
|
|
|
|
|
2016-01-31 19:29:05 +00:00
|
|
|
|
Since ``tqdm`` uses a simple printing mechanism to display progress bars,
|
|
|
|
|
you should not write any message in the terminal using ``print()``.
|
|
|
|
|
|
|
|
|
|
To write messages in the terminal without any collision with ``tqdm`` bar
|
|
|
|
|
display, a ``.write()`` method is provided:
|
|
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
|
|
from tqdm import tqdm, trange
|
|
|
|
|
from time import sleep
|
|
|
|
|
|
|
|
|
|
bar = trange(10)
|
|
|
|
|
for i in bar:
|
|
|
|
|
# Print using tqdm class method .write()
|
|
|
|
|
sleep(0.1)
|
|
|
|
|
if not (i % 3):
|
|
|
|
|
tqdm.write("Done task %i" % i)
|
|
|
|
|
# Can also use bar.write()
|
|
|
|
|
|
|
|
|
|
By default, this will print to standard output ``sys.stdout``. but you can
|
|
|
|
|
specify any file-like object using the ``file`` argument. For example, this
|
|
|
|
|
can be used to redirect the messages writing to a log file or class.
|
2015-12-02 18:28:35 +00:00
|
|
|
|
|
2016-05-30 11:50:50 +00:00
|
|
|
|
Redirecting writing
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
2016-05-28 21:30:41 +00:00
|
|
|
|
|
2016-05-30 11:50:50 +00:00
|
|
|
|
If using a library that can print messages to the console, editing the library
|
|
|
|
|
by replacing ``print()`` with ``tqdm.write()`` may not be desirable.
|
|
|
|
|
In that case, redirecting ``sys.stdout`` to ``tqdm.write()`` is an option.
|
2016-05-28 21:30:41 +00:00
|
|
|
|
|
2016-05-30 11:50:50 +00:00
|
|
|
|
To redirect ``sys.stdout``, create a file-like class that will write
|
|
|
|
|
any input string to ``tqdm.write()``, and supply the arguments
|
|
|
|
|
``file=sys.stdout, dynamic_ncols=True``.
|
2016-05-28 21:30:41 +00:00
|
|
|
|
|
2016-05-30 11:50:50 +00:00
|
|
|
|
A reusable canonical example is given below:
|
2016-05-28 21:30:41 +00:00
|
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
|
|
from time import sleep
|
|
|
|
|
|
|
|
|
|
import contextlib
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
from tqdm import tqdm
|
|
|
|
|
|
|
|
|
|
class DummyTqdmFile(object):
|
|
|
|
|
"""Dummy file-like that will write to tqdm"""
|
|
|
|
|
file = None
|
|
|
|
|
def __init__(self, file):
|
|
|
|
|
self.file = file
|
|
|
|
|
|
|
|
|
|
def write(self, x):
|
|
|
|
|
# Avoid print() second call (useless \n)
|
|
|
|
|
if len(x.rstrip()) > 0:
|
|
|
|
|
tqdm.write(x, file=self.file)
|
|
|
|
|
|
|
|
|
|
@contextlib.contextmanager
|
|
|
|
|
def stdout_redirect_to_tqdm():
|
|
|
|
|
save_stdout = sys.stdout
|
|
|
|
|
try:
|
|
|
|
|
sys.stdout = DummyTqdmFile(sys.stdout)
|
|
|
|
|
yield save_stdout
|
|
|
|
|
# Relay exceptions
|
|
|
|
|
except Exception as exc:
|
|
|
|
|
raise exc
|
|
|
|
|
# Always restore sys.stdout if necessary
|
|
|
|
|
finally:
|
|
|
|
|
sys.stdout = save_stdout
|
|
|
|
|
|
|
|
|
|
def blabla():
|
|
|
|
|
print("Foo blabla")
|
|
|
|
|
|
|
|
|
|
# Redirect stdout to tqdm.write() (don't forget the `as save_stdout`)
|
|
|
|
|
with stdout_redirect_to_tqdm() as save_stdout:
|
2016-05-30 11:50:50 +00:00
|
|
|
|
# tqdm call need to specify sys.stdout, not sys.stderr (default)
|
|
|
|
|
# and dynamic_ncols=True to autodetect console width
|
|
|
|
|
for _ in tqdm(range(3), file=save_stdout, dynamic_ncols=True):
|
|
|
|
|
blabla()
|
|
|
|
|
sleep(.5)
|
2016-05-28 21:30:41 +00:00
|
|
|
|
|
|
|
|
|
# After the `with`, printing is restored
|
|
|
|
|
print('Done!')
|
|
|
|
|
|
2016-01-25 08:28:59 +00:00
|
|
|
|
|
2015-10-11 17:11:45 +00:00
|
|
|
|
Contributions
|
|
|
|
|
-------------
|
|
|
|
|
|
2016-08-17 16:33:15 +00:00
|
|
|
|
All source code is hosted on `GitHub <https://github.com/tqdm/tqdm>`__.
|
2016-07-23 13:23:41 +00:00
|
|
|
|
Contributions are welcome.
|
2015-12-05 15:44:27 +00:00
|
|
|
|
|
2016-04-03 18:36:56 +00:00
|
|
|
|
See the
|
|
|
|
|
`CONTRIBUTE <https://raw.githubusercontent.com/tqdm/tqdm/master/CONTRIBUTE>`__
|
2015-10-30 21:17:47 +00:00
|
|
|
|
file for more information.
|
2015-10-11 17:11:45 +00:00
|
|
|
|
|
2015-10-12 16:30:24 +00:00
|
|
|
|
|
2016-08-17 16:33:15 +00:00
|
|
|
|
LICENCE
|
2015-10-11 17:11:45 +00:00
|
|
|
|
-------
|
|
|
|
|
|
2016-08-17 16:33:15 +00:00
|
|
|
|
Open Source (OSI approved): |LICENCE|
|
2015-10-11 17:11:45 +00:00
|
|
|
|
|
2016-05-19 07:23:15 +00:00
|
|
|
|
Citation information: |DOI-URI|
|
2015-10-12 16:30:24 +00:00
|
|
|
|
|
2016-05-30 11:50:50 +00:00
|
|
|
|
|
2015-10-11 17:11:45 +00:00
|
|
|
|
Authors
|
|
|
|
|
-------
|
|
|
|
|
|
2016-04-25 21:15:26 +00:00
|
|
|
|
Ranked by contributions.
|
|
|
|
|
|
2015-10-11 17:11:45 +00:00
|
|
|
|
- Casper da Costa-Luis (casperdcl)
|
|
|
|
|
- Stephen Larroque (lrq3000)
|
2015-10-18 21:11:35 +00:00
|
|
|
|
- Hadrien Mary (hadim)
|
|
|
|
|
- Noam Yorav-Raphael (noamraph)*
|
|
|
|
|
- Ivan Ivanov (obiwanus)
|
|
|
|
|
- Mikhail Korobov (kmike)
|
|
|
|
|
|
|
|
|
|
`*` Original author
|
2015-10-11 17:11:45 +00:00
|
|
|
|
|
2016-08-17 16:33:15 +00:00
|
|
|
|
|README-Hits| (Since 19 May 2016)
|
2016-05-19 07:23:15 +00:00
|
|
|
|
|
2015-10-11 20:33:57 +00:00
|
|
|
|
.. |Logo| image:: https://raw.githubusercontent.com/tqdm/tqdm/master/logo.png
|
2016-04-25 21:15:26 +00:00
|
|
|
|
.. |Screenshot| image:: https://raw.githubusercontent.com/tqdm/tqdm/master/images/tqdm.gif
|
2016-05-19 07:23:15 +00:00
|
|
|
|
.. |Build-Status| image:: https://travis-ci.org/tqdm/tqdm.svg?branch=master
|
2015-10-11 17:11:45 +00:00
|
|
|
|
:target: https://travis-ci.org/tqdm/tqdm
|
2016-05-19 07:23:15 +00:00
|
|
|
|
.. |Coverage-Status| image:: https://coveralls.io/repos/tqdm/tqdm/badge.svg
|
2015-10-11 17:11:45 +00:00
|
|
|
|
:target: https://coveralls.io/r/tqdm/tqdm
|
2016-05-19 07:23:15 +00:00
|
|
|
|
.. |Branch-Coverage-Status| image:: https://codecov.io/github/tqdm/tqdm/coverage.svg?branch=master
|
2015-11-28 02:10:08 +00:00
|
|
|
|
:target: https://codecov.io/github/tqdm/tqdm?branch=master
|
2016-08-17 16:33:15 +00:00
|
|
|
|
.. |GitHub-Status| image:: https://img.shields.io/github/tag/tqdm/tqdm.svg?maxAge=2592000
|
2016-04-25 21:15:26 +00:00
|
|
|
|
:target: https://github.com/tqdm/tqdm/releases
|
2016-08-17 16:33:15 +00:00
|
|
|
|
.. |GitHub-Forks| image:: https://img.shields.io/github/forks/tqdm/tqdm.svg
|
2016-04-25 21:15:26 +00:00
|
|
|
|
:target: https://github.com/tqdm/tqdm/network
|
2016-08-17 16:33:15 +00:00
|
|
|
|
.. |GitHub-Stars| image:: https://img.shields.io/github/stars/tqdm/tqdm.svg
|
2016-04-25 21:15:26 +00:00
|
|
|
|
:target: https://github.com/tqdm/tqdm/stargazers
|
2016-08-17 16:33:15 +00:00
|
|
|
|
.. |PyPI-Status| image:: https://img.shields.io/pypi/v/tqdm.svg
|
2015-10-12 10:22:07 +00:00
|
|
|
|
:target: https://pypi.python.org/pypi/tqdm
|
2016-08-17 16:33:15 +00:00
|
|
|
|
.. |PyPI-Downloads| image:: https://img.shields.io/pypi/dm/tqdm.svg
|
2015-10-12 10:22:07 +00:00
|
|
|
|
:target: https://pypi.python.org/pypi/tqdm
|
2016-08-17 16:33:15 +00:00
|
|
|
|
.. |PyPI-Versions| image:: https://img.shields.io/pypi/pyversions/tqdm.svg
|
2016-04-25 21:15:26 +00:00
|
|
|
|
:target: https://pypi.python.org/pypi/tqdm
|
2016-08-17 16:33:15 +00:00
|
|
|
|
.. |LICENCE| image:: https://img.shields.io/pypi/l/tqdm.svg
|
2016-04-25 21:15:26 +00:00
|
|
|
|
:target: https://raw.githubusercontent.com/tqdm/tqdm/master/LICENCE
|
2016-05-19 07:23:15 +00:00
|
|
|
|
.. |DOI-URI| image:: https://zenodo.org/badge/21637/tqdm/tqdm.svg
|
2016-04-25 21:15:26 +00:00
|
|
|
|
:target: https://zenodo.org/badge/latestdoi/21637/tqdm/tqdm
|
2016-05-08 23:01:28 +00:00
|
|
|
|
.. |Screenshot-Jupyter1| image:: https://raw.githubusercontent.com/tqdm/tqdm/master/images/tqdm-jupyter-1.gif
|
|
|
|
|
.. |Screenshot-Jupyter2| image:: https://raw.githubusercontent.com/tqdm/tqdm/master/images/tqdm-jupyter-2.gif
|
|
|
|
|
.. |Screenshot-Jupyter3| image:: https://raw.githubusercontent.com/tqdm/tqdm/master/images/tqdm-jupyter-3.gif
|
2016-08-17 16:33:15 +00:00
|
|
|
|
.. |README-Hits| image:: http://hitt.herokuapp.com/tqdm/tqdm.svg
|