个人随笔
目录
python使用urlopen/urlretrieve下载文件时出现403 forbidden的解决方法
2019-08-03 23:06:33

出现该错误的原因是服务器开启了反爬虫,一般情况下只需要设置header模拟浏览器即可,但是urlretrieve并未提供header参数。

使用urlopen也可以直接下载文件,例:

  1. headers = {"User-Agent": "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36"}
  2. def down_pic(url, path):
  3. try:
  4. req = request.Request(url, headers=headers)
  5. data = request.urlopen(req).read()
  6. with open(path, 'wb') as f:
  7. f.write(data)
  8. f.close()
  9. except Exception as e:
  10. print(str(e))

还有一种解决方法:

  1. opener=urllib.request.build_opener()
  2. opener.addheaders=[('User-Agent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1941.0 Safari/537.36')]
  3. urllib.request.install_opener(opener)
  4. urllib.request.urlretrieve(url, Path)
 356

啊!这个可能是世界上最丑的留言输入框功能~


当然,也是最丑的留言列表

有疑问发邮件到 : suibibk@qq.com 侵权立删
Copyright : 个人随笔   备案号 : 粤ICP备18099399号-2