Skip to content

Utilize tqdm progress bar when verbose=True during scans. #40

Open
@MSRudolph

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions