tqdm/examples/include_no_requirements.py

12 lines
270 B
Python
Raw Permalink Normal View History

2020-01-24 22:28:48 +00:00
# How to import tqdm in any frontend without enforcing it as a dependency
2016-02-09 07:56:04 +00:00
try:
2020-01-24 22:28:48 +00:00
from tqdm.auto import tqdm
2016-10-22 13:17:52 +00:00
except ImportError:
2017-08-28 11:42:38 +00:00
2016-02-09 07:56:04 +00:00
def tqdm(*args, **kwargs):
if args:
return args[0]
return kwargs.get('iterable', None)
2021-02-22 22:42:24 +00:00
__all__ = ['tqdm']