Skip to content

Instantly share code, notes, and snippets.

@jovianlin
Created October 20, 2017 03:28
Show Gist options
  • Save jovianlin/48532a678b40be4f9a5df939212c6355 to your computer and use it in GitHub Desktop.
Save jovianlin/48532a678b40be4f9a5df939212c6355 to your computer and use it in GitHub Desktop.
Use TQDM if installed
# Use TQDM if installed
tqdm_installed = False
try:
from tqdm import tqdm
tqdm_installed = True
except:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment