iamleot / transferwee

Download/upload files via wetransfer.com
155 stars 38 forks source link

Asynchronously download on batch download? #16

Closed mirusu400 closed 3 years ago

mirusu400 commented 3 years ago

For now, the module download as synchronously (one-by-one). Can we use as asynchronously(using asyncio or etc) on batch download and download more fastly?

iamleot commented 3 years ago

I have no idea if the entire code should be converted to asyncio and/or, probably even better, provide both the current API and an async one!

At least for download, if you need to possibly download a lot of files given a lot of WeTransfer URLs, I suggest to use transferwee download -g <url> fo r each URL and then pass the list to your favourite download manager/fetcher.

mirusu400 commented 3 years ago

Oh, I didn't notice -g option, sorry for my mistake. I'll use IDM then. Thanks for your help!