DEV Community

Discussion on: How to make Python code concurrent with 3 lines

Collapse
 
rhymes profile image
rhymes

Yeah, there's a lot of neat stuff in that module. I chose map because it's probably the quick and dirty solution to make a sequential workload into a parallel one.

I have a program in production that does a mass upload of images to S3 using futures and as_completed.

Didn't know about tqdm though, thanks for the tip!

Collapse
 
safijari profile image
Jariullah Safi

tqdm is a life changer!