1from warnings import warn
2
3from .std import *  # NOQA
4from .std import __all__  # NOQA
5from .std import TqdmDeprecationWarning
6
7warn("This function will be removed in tqdm==5.0.0\n"
8     "Please use `tqdm.std.*` instead of `tqdm._tqdm.*`",
9     TqdmDeprecationWarning, stacklevel=2)
10