[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug-wget] grab complete download link
From: |
bas smit |
Subject: |
[Bug-wget] grab complete download link |
Date: |
Thu, 17 Jul 2014 17:52:48 +0900 |
I am looking for command line option to use the same functionality as the
"Download All with Free Download Manager" does. It grabs the complete
download links though only partial links are shown in the source html. I
tried the following code, but but could not figure out which particular
parameter is necessary for that. The url provided below is the only known
one.
import subprocess
user, passw = 'user', 'passw'
url =
'http://earthexplorer.usgs.gov/download/3120/LM10300301974324GDS05/STANDARD/BulkDownload'
wget = "C:\\Users\\bas\\Downloads\\wget-1.10.2.exe"
subprocess.call([wget, '--user', user, '--password', passw, url])
- [Bug-wget] grab complete download link,
bas smit <=