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

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

问题描述

我有这行代码:urllib.request.urlretrieve('http://lolupdater.com/downloads/LPB.exe', 'LPBtest.exe'),但是当我运行时它,它抛出一个错误 urllib.error.HTTPError: HTTP Error 403: Forbidden.

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: Forbidden 错误.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天全站免登陆