Incremental GSC parsing (exact copy of the tutorials shared as a separate project) / tqdm / __init__.py
1576 viewsfrom ._tqdm import tqdm1from ._tqdm import trange2from ._tqdm_gui import tqdm_gui3from ._tqdm_gui import tgrange4from ._tqdm_pandas import tqdm_pandas5from ._main import main6from ._version import __version__ # NOQA7from ._tqdm import TqdmTypeError, TqdmKeyError, TqdmDeprecationWarning89__all__ = ['tqdm', 'tqdm_gui', 'trange', 'tgrange', 'tqdm_pandas',10'tqdm_notebook', 'tnrange', 'main',11'TqdmTypeError', 'TqdmKeyError', 'TqdmDeprecationWarning',12'__version__']131415def tqdm_notebook(*args, **kwargs): # pragma: no cover16"""See tqdm._tqdm_notebook.tqdm_notebook for full documentation"""17from ._tqdm_notebook import tqdm_notebook as _tqdm_notebook18return _tqdm_notebook(*args, **kwargs)192021def tnrange(*args, **kwargs): # pragma: no cover22"""23A shortcut for tqdm_notebook(xrange(*args), **kwargs).24On Python3+ range is used instead of xrange.25"""26from ._tqdm_notebook import tnrange as _tnrange27return _tnrange(*args, **kwargs)282930