nadimkobeissi / mkbsd

Download all the wallpapers in MKBHD's "Panels" app
Do What The F*ck You Want To Public License
3.66k stars 448 forks source link

python - speedup asyncio #61

Open OmLanke opened 1 month ago

OmLanke commented 1 month ago

Greatly speed up the downloads by not waiting for each download to complete before starting the next one.

asyncio.TaskGroup is used to await for all downloads to finish at the end, before moving on to the next part.