1
0
Fork 0
tqdm/examples/include_no_requirements.py

12 lines
270 B
Python
Raw Normal View History

# How to import tqdm in any frontend without enforcing it as a dependency
try:
from tqdm.auto import tqdm
except ImportError:
def tqdm(*args, **kwargs):
if args:
return args[0]
return kwargs.get('iterable', None)
__all__ = ['tqdm']