/usr/local/lib/python3.6/site-packages/tqdm
NameSizeModeActions
contrib/-0755rm
__pycache__/-0755rm
asyncio.py27890644editdlrm
auto.py11060644editdlrm
autonotebook.py9560644editdlrm
cli.py108710644editdlrm
completion.sh9460755editdlrm
dask.py13770644editdlrm
gui.py59430644editdlrm
keras.py44090644editdlrm
notebook.py113170644editdlrm
rich.py51520644editdlrm
std.py583410644editdlrm
tk.py69480644editdlrm
tqdm.179970644editdlrm
utils.py98030644editdlrm
version.py3330644editdlrm
_dist_ver.py230644editdlrm
_main.py2830644editdlrm
_monitor.py36990644editdlrm
_tqdm.py2830644editdlrm
_tqdm_gui.py2870644editdlrm
_tqdm_notebook.py3070644editdlrm
_tqdm_pandas.py8880644editdlrm
_utils.py5960644editdlrm
__init__.py16390644editdlrm
__main__.py300644editdlrm
Edit: /usr/local/lib/python3.6/site-packages/tqdm/__init__.py (1639B)
from ._monitor import TMonitor, TqdmSynchronisationWarning from ._tqdm_pandas import tqdm_pandas from .cli import main # TODO: remove in v5.0.0 from .gui import tqdm as tqdm_gui # TODO: remove in v5.0.0 from .gui import trange as tgrange # TODO: remove in v5.0.0 from .std import ( TqdmDeprecationWarning, TqdmExperimentalWarning, TqdmKeyError, TqdmMonitorWarning, TqdmTypeError, TqdmWarning, tqdm, trange) from .version import __version__ __all__ = ['tqdm', 'tqdm_gui', 'trange', 'tgrange', 'tqdm_pandas', 'tqdm_notebook', 'tnrange', 'main', 'TMonitor', 'TqdmTypeError', 'TqdmKeyError', 'TqdmWarning', 'TqdmDeprecationWarning', 'TqdmExperimentalWarning', 'TqdmMonitorWarning', 'TqdmSynchronisationWarning', '__version__'] def tqdm_notebook(*args, **kwargs): # pragma: no cover """See tqdm.notebook.tqdm for full documentation""" from warnings import warn from .notebook import tqdm as _tqdm_notebook warn("This function will be removed in tqdm==5.0.0\n" "Please use `tqdm.notebook.tqdm` instead of `tqdm.tqdm_notebook`", TqdmDeprecationWarning, stacklevel=2) return _tqdm_notebook(*args, **kwargs) def tnrange(*args, **kwargs): # pragma: no cover """ A shortcut for `tqdm.notebook.tqdm(xrange(*args), **kwargs)`. On Python3+, `range` is used instead of `xrange`. """ from warnings import warn from .notebook import trange as _tnrange warn("Please use `tqdm.notebook.trange` instead of `tqdm.tnrange`", TqdmDeprecationWarning, stacklevel=2) return _tnrange(*args, **kwargs)