Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder5.xlned.com!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.036 X-Spam-Evidence: '*H*': 0.94; '*S*': 0.01; 'python.': 0.02; 'subject:Python': 0.06; 'subject:help': 0.08; 'subject:script': 0.09; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'url)': 0.16; 'wrote:': 0.18; '(by': 0.24; 'options': 0.25; 'script': 0.25; 'header:In-Reply-To:1': 0.27; 'message- id:@mail.gmail.com': 0.30; 'tool': 0.35; 'received:google.com': 0.35; 'sometimes': 0.38; 'thank': 0.38; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'help,': 0.39; 'to:addr:python.org': 0.39; 'you.': 0.62; '30,': 0.65; 'online': 0.71; 'jul': 0.74; 'downloadable': 0.84; '2013': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=iG4F1kM69Hivf7WcOyas4NO4ayU2n5zuZaGRYRxojqw=; b=bdNeOB4jL70ZoWFRfGyuGd9O2Qu2C3iip3bZme9MrlARIkdfe/N9rTesZOFnuCdW+Y 9fwdychJ+jnDjpq005+Jp766GAY4KV1wmAGF0Cln5v4i+7E3ISdB837ndcTsmgcBsC+I e8GzNZ2eIgcJQrqCKAETAsHVaRS7D7yqSv6KPZV1gDZFIm6CO66dfeN+4pholjBuS+FJ UjtmHzHXT4cfchH0SgmxEJ+p4ma+cIyDlAWzIHSJYxUwEYel24S5nc6ef0ysCv3NWvoW hBw5Fq7cTDGYNvl0skmq/9PNJFjfvDTnndcRLTTCrHlvzXeDysE/ajc3Z40o37j7ITxI 5hQA== MIME-Version: 1.0 X-Received: by 10.59.9.69 with SMTP id dq5mr26716240ved.87.1375198737832; Tue, 30 Jul 2013 08:38:57 -0700 (PDT) In-Reply-To: <4566d0e7-2576-4d09-83f5-fca3b370710a@googlegroups.com> References: <4566d0e7-2576-4d09-83f5-fca3b370710a@googlegroups.com> Date: Tue, 30 Jul 2013 16:38:57 +0100 Subject: Re: Python script help From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 12 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1375198746 news.xs4all.nl 15904 [2001:888:2000:d::a6]:44147 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:51569 On Tue, Jul 30, 2013 at 3:49 PM, 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