tqdm/examples/include_no_requirements.py

10 lines
229 B
Python
Raw Normal View History

2016-02-09 07:56:04 +00:00
# How to import tqdm without enforcing it as a dependency
try:
from tqdm 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)