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

python爬取网页时返回http状态码HTTP Error 418

时间:2020-01-06 19:48:59      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:解决   utf-8   server   拒绝   open   serve   foo   问题   print   

问题:urllib.error.HTTPError: HTTP Error 418:

问题描述:当我使用Python的request爬取网页时返回了http状态码为418,

错误描述:经过网上查询得知,418的意思是被网站的反爬程序返回的,网上解释为,418 I‘m a teapot
The HTTP 418 I‘m a teapot client error response code indicates that the server refuses to brew coffee because it is a teapot. This error is a reference to Hyper Text Coffee Pot Control Protocol which was an April Fools‘ joke in 1998.

翻译为:HTTP 418 I‘m a teapot客户端错误响应代码表示服务器拒绝煮咖啡,因为它是一个茶壶。这个错误是对1998年愚人节玩笑的超文本咖啡壶控制协议的引用。

解决办法:当时我用的是urllib的request,我感觉这个库应该有点久了,所以换了requests这个库,然后再次请求,并添加了header的信息就可以了,如果不加程序放回的是空,没有结果,运行不会错

使用request:

from urllib import request

r = request.urlopen(url)

html = r.read().decode("utf-8")

print(html)

使用requests并添加headers信息后:

import requests

headers={‘User-Agent‘: ‘Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36‘}

r = requests.get(url,headers=headers)

html = r.text

print(html)

 

python爬取网页时返回http状态码HTTP Error 418

标签:解决   utf-8   server   拒绝   open   serve   foo   问题   print   

原文地址:https://www.cnblogs.com/yunlixingchen/p/12157848.html

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