社区所有版块导航
Python
python开源   Django   Python   DjangoApp   pycharm  
DATA
docker   Elasticsearch  
aigc
aigc   chatgpt  
WEB开发
linux   MongoDB   Redis   DATABASE   NGINX   其他Web框架   web工具   zookeeper   tornado   NoSql   Bootstrap   js   peewee   Git   bottle   IE   MQ   Jquery  
机器学习
机器学习算法  
Python88.com
反馈   公告   社区推广  
产品
短视频  
印度
印度  
Py学习  »  问与答

python中使用代理怎么老是出错,这是为毛?

cumt_ttr • 10 年前 • 11764 次点击  
proxy = 'http://127.0.0.1:80'
opener = urllib2.build_opener(urllib2.ProxyHandler({'http': proxy}))
req = urllib2.Request("http://www.baidu.com", '', headers)
urllib2.install_opener(opener)
response = urllib2.urlopen(req).read()
with open('j:/01' + ".srt", "wb") as subtitle:
    subtitle.write(response)

出错信息如下

"I:\Program Files\python27\python.exe" C:/test.py
Traceback (most recent call last):
  File "C:/test.py", line 13, in <module>
    response = urllib2.urlopen(req).read()
  File "I:\Program Files\python27\lib\urllib2.py", line 127, in urlopen
    return _opener.open(url, data, timeout)
  File "I:\Program Files\python27\lib\urllib2.py", line 404, in open
    response = self._open(req, data)
  File "I:\Program Files\python27\lib\urllib2.py", line 422, in _open
    '_open', req)
  File "I:\Program Files\python27\lib\urllib2.py", line 382, in _call_chain
    result = func(*args)
  File "I:\Program Files\python27\lib\urllib2.py", line 1214, in http_open
    return self.do_open(httplib.HTTPConnection, req)
  File "I:\Program Files\python27\lib\urllib2.py", line 1184, in do_open
    raise URLError(err)
urllib2.URLError: <urlopen error [Errno 10061] >

Process finished with exit code 1
Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/622
 
11764 次点击  
文章 [ 3 ]  |  最新文章 10 年前