tqdm/examples/include_no_requirements.py

9 lines
216 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
except:
def tqdm(*args, **kwargs):
if args:
return args[0]
return kwargs.get('iterable', None)