结合使用urllib.request和代理

时间:2019-03-28 09:20:16

标签: python python-3.x proxy download

我在办公室时需要使用python脚本下载文件...长期目标是将其分发给我的队友,但需要解决代理问题

这是我现在正在使用的代码

import urllib.request
import shutil

url = "https://download/app/client/app.exe"
output_file = "C:\\Desktop\\testing\\App.exe"
with urllib.request.urlopen(url) as response, open(output_file, 'wb') as out_file:
    shutil.copyfileobj(response, out_file)

当我启动此脚本时,它只是挂起了,我知道这是由于代理问题而引起的。我如何将其设置为使用公司代理?理想情况下,最好根据位置(家庭还是办公室)使用代理设置,但我会尽我所能

0 个答案:

没有答案