Download large file in Google Drive with aria2 at max speed
With small file, you can easily download it by aria2c -x16 -s16 -j5 "https://drive.google.com/uc?id=YOURFILEID&export=download"
. But you can't do that with large file because Google will show a warning about virus scan. So I want to make this for downloading the large file from Google Drive automaticly without confirm that warning.
This work the same as this wget method: Get the auth cookies from Google Drive, pass it to aria2c (see this).
gda.py fileid
fileid: Insert your fileid
For example: if your link is https://drive.google.com/file/d/1nVOL_4NMw8hfszfYYo2bwUSgFtQtulAT/view
gda.py 1nVOL_4NMw8hfszfYYo2bwUSgFtQtulAT
- Python3
- requests library:
pip/pip3 install requests
- aria2
- Add folder download support
Special thanks to aria2, requests and other libs.