##// END OF EJS Templates
Backport PR #11234: Upgrade pip before setuptools for Python compat.
Backport PR #11234: Upgrade pip before setuptools for Python compat.

File last commit:

r23912:5b17973b
r24430:44216dca
Show More
progressbar.rst
10 lines | 220 B | text/x-rst | RstLexer

IPython now has built-in support for progressbars:

In[1]: from IPython.display import ProgressBar
...  : pb = ProgressBar(100)
...  : pb

In[2]: pb.progress = 50

# progress bar in cell 1 updates.