1. 报错
ValueError: check_hostname requires server_hostname
首先检查梯子,如果有梯子要先关掉
2. 报错×2
AttributeError: 'Response' object has no attribute 'status'
参考网上文章尝试:
① 以管理员身份运行PyCharm→无效
② 改成Python3.8解释器 →已经设置正确,无效
③ 配置文件→已经设置正确,无效 (总结pycharm运行爬虫代码只显示Process finished with exit code 0的解决办法_风飘-小谭谭的博客-CSDN博客)
可能是编辑器并非IDE,所以正常运行但无法输出。换成python.exe,可以输出。显示状态为 418
3. 418错误
原因是未添加请求header的useragent,以防止反爬虫识别
chrome浏览器直接输入chrome://version/,可查询UserAgent
后改代码为
import requests
headers = {'User-Agent': '查询结果'}
r = requests.get('查询地址', headers=headers)
r.status_code
r.text
成功