码迷,mamicode.com
首页 > 其他好文 > 详细

爬虫入门.

时间:2018-02-14 18:43:28      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:iss   报错   gpo   jpg   shu   .com   爬虫   error   erro   

requests爬虫简单框架:

import requests
try:
    r = requests.get(url)
    r.raise_for_status()  #如果状态码不是200会异常
    r.encoding = r.apparent_encoding
    return r.text
except:
    return 产生异常

 

 

path=rc:/abc.jpg
open(path, wb)

会报错:PermissionError: [Errno 13] Permission denied: ‘c:/abc.jpg‘

path=rc:/1/abc.jpg
open(path, wb)

就不会。。。不明白

 

path = rc:/1/abc.jpg
with open(path, wb) as f:
    f.write(r.content)

关于content和text:https://www.jianshu.com/p/0e0336b370f3

 

爬虫入门.

标签:iss   报错   gpo   jpg   shu   .com   爬虫   error   erro   

原文地址:https://www.cnblogs.com/betterluo/p/8448642.html

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