zeehio / parmap

Easy to use map and starmap python equivalents
Apache License 2.0
144 stars 9 forks source link

how about add `tqdm.notebook` support? #25

Closed wldhg closed 3 years ago

wldhg commented 3 years ago

In jupyter notebook, just tqdm makes the progress bar printed repeatedly.

image

This can be resolved by using tqdm.auto instead of tqdm.

So this line can be modified as below:

import tqdm.auto as tqdm

how do you think about this?

thanks

zeehio commented 3 years ago

Thanks!