Python script help

Chris Angelico rosuav at gmail.com
Tue Jul 30 11:38:57 EDT 2013


On Tue, Jul 30, 2013 at 3:49 PM,  <cool1574 at gmail.com> wrote:
> Hello, I am looking for a script that will be able to search an online document (by giving the script the URL) and find all the downloadable links in the document and then download them automatically.
> I appreciate your help,
> Thank you.

baseurl = "http://........"
options = "....."
os.system("wget "+options+" "+baseurl)

Sometimes the right tool for the job isn't Python.

ChrisA



More information about the Python-list mailing list