Python: Bulk download of the R language Library package

Source: Internet
Author: User

The soupr.py code is as follows

#-*-coding : cp936-*-import urllibimport urllib2import os, refrom beautifulsoup import beautifulsouplocaldir = ' d:/test/' URL = "http ://cran.dataguru.cn/bin/windows/contrib/3.1/"page = Urllib2.urlopen (URL) soup = beautifulsoup (page) Page.close () for a In Soup.findall (' a '): If A is not None:text = A.text.strip () #if re.search (' map ', text): if text.                StartsWith (' map '): href = a.get (' href ') if Href.endswith ('. zip '): #print href LocalFile = localdir + text if os.path.exists (localfile): Print LocalFile, ' is ex Ists ' else:try: # download files by URL and save to local directory ur Llib.urlretrieve (url+href,localfile) print href, ' is download ' except Exception,e : Continue 


Python: Bulk download of the R language Library package

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.