码迷,mamicode.com
首页 > 编程语言 > 详细

Python 爬虫-图片的爬取

时间:2017-07-26 00:18:02      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:mkdir   exce   python 爬虫   close   with   blog   ret   coding   pytho   

2017-07-25 22:49:21

import requests
import os

url = https://wallpapers.wallhaven.cc/wallpapers/full/wallhaven-278989.jpg
root = E://pics//
path = root + url.split(/)[-1]

def gethtml(url):
    # 打开网页有风险,需要使用try-except语句进行风险控制
    kv = {user-agent:Chrome/10}
    try:
        r = requests.get(url,headers=kv)
        r.raise_for_status()   # 如果打开失败,则会抛出一个HttpError异常
        # encoding是从header中分析出来的编码方式,apparent_encoding是 从内容分析出的编码方式
        #r.encoding=r.apparent_encoding
        return r.content
    except:
        print("打开失败")

if __name__ ==__main__:
    if not os.path.exists(root):
        os.mkdir(root)
    r = gethtml(url)
    with open(path,wb) as f:
        f.write(r)
        f.close()
        print(图片已存储)

 

Python 爬虫-图片的爬取

标签:mkdir   exce   python 爬虫   close   with   blog   ret   coding   pytho   

原文地址:http://www.cnblogs.com/TIMHY/p/7236972.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!