HTTP错误403:使用urllib下载文件时被禁止 [英] HTTP Error 403: Forbidden while downloading file using urllib

查看:118
本文介绍了HTTP错误403:使用urllib下载文件时被禁止的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下代码行: urllib.request.urlretrieve('http://lolupdater.com/downloads/LPB.exe','LPBtest.exe'),但是当我运行它时,它会引发错误 urllib.error.HTTPError:HTTP错误403:禁止

I have this line of code: urllib.request.urlretrieve('http://lolupdater.com/downloads/LPB.exe', 'LPBtest.exe'), but when I run it, it throws an error urllib.error.HTTPError: HTTP Error 403: Forbidden.

推荐答案

这似乎是实际的HTTP 403:禁止错误。 Python urllib 遇到HTTP状态代码时会引发异常(记录为此处)。 403 的一般含义是:服务器理解了该请求,但拒绝执行该请求。您将需要添加HTTP标头以标识自己,并避免 403 错误,有关 Python urllib标头。以下是使用 urlopen 的示例:

That looks to be an actual HTTP 403: Forbidden error. Python urllib throws the exception when it encounters an HTTP status code (documented here). 403 in general means: "The server understood the request, but is refusing to fulfill it." You will need to add HTTP headers to identify yourself and avoid the 403 error, documentation on Python urllib headers. Here is an example using urlopen:

import urllib.request
req = urllib.request.Request('http://lolupdater.com/downloads/LPB.exe', headers={'User-Agent': 'Mozilla/5.0'})
response = urllib.request.urlopen(req)

使用Python 3 urllib.urlretrieve()考虑为旧版。为此,我建议 Python请求,这是一个有效的示例:

With Python 3 urllib.urlretrieve() is considered legacy. I would recommend Python Requests for this, here is a working example:

import requests

url = 'http://lolupdater.com/downloads/LPB.exe'
r = requests.get(url)
with open('LPBtest.exe', 'wb') as outfile:
    outfile.write(r.content)

这篇关于HTTP错误403:使用urllib下载文件时被禁止的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆