Utilize tqdm progress bar when verbose=True during scans. #40
Open
Description
Is your feature request related to a problem? Please describe.
We should replace the print
calls when verbose=True
in scans with tqdm
from the tqdm
library. Alternatively, we make it the default and find a way to mute the library's prints.
Describe the solution you'd like
verbose = True # or False
for it in tqdm(range(n_iters), disable = not verbose):
... # run scans
Additional context
Our verbosity options are currently very rudimentary and tqdm
is one of the most used Python libraries.
Metadata
Assignees
Labels
No labels