Python Downloads resources to local

Source: Internet
Author: User

Import Urllib.request
Import OS
#Download resources to LocalUrlUrlPathLocal Path
def downloadpic (Url,path):
If not os.path.exists (path):#Determine if a folder exists locally
Os.makedirs (PATH)
path=path+"1.jpeg"
Urllib.request.urlretrieve (URL, path)

#Download stock information to a localCsvFormat
def downloadstock (Url,path):
If not os.path.exists (path):#Determine if a folder exists locally
Os.makedirs (PATH)
path=path+"2.csv"
Urllib.request.urlretrieve (URL, path)

url1="Https://ss0.bdstatic.com/94oJfD_bAAcT8t7mm9GUKT-xh_/timg?image&quality=100&size=b4000_4000&sec= 1510479255&di=b684cee336d69fba64629bf6cdec3083&src=http://img4q.duitang.com/uploads/item/201504/22/ 20150422h2151_v5qpn.jpeg "
path1=C\\Users\\Song\\Desktop\\Download\\"
Downloadpic (URL1,PATH1)

Url2= "http://quotes.money.163.com/service/chddata.html?code=1300133 &end=20151023&fields=TCLOSE; High; Low; Topen; Lclose; CHG; Pchg; Turnover; Voturnover; Vaturnover; TCAP; MCAP "
Path2=" C: \\users\\song \\desktop\\download\\"
Downloadstock (url2,path2)
 

Python Downloads resources to local

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.