urlopen Windows FTP 错误
这段代码在linux下完美运行,但在windows下却出现错误。怎么了?
import urllib, urllib2
a = 'ftp://ftp.arin.net/pub/stats/arin/delegated-arin-latest'
urllib.urlopen(a)
IOError: [Errno ftp error] proxy support for ftp protocol currently not implemented
urllib2.urlopen(a)
URLError: <urlopen error ftp error: >
This code works perfectly at linux, but windows at there are errors. What's wrong?
import urllib, urllib2
a = 'ftp://ftp.arin.net/pub/stats/arin/delegated-arin-latest'
urllib.urlopen(a)
IOError: [Errno ftp error] proxy support for ftp protocol currently not implemented
urllib2.urlopen(a)
URLError: <urlopen error ftp error: >
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查您的 Internet Explorer 中是否有一些代理设置:菜单附加 -> Internet 选项,还有连接 ->“LAN 设置”(或类似的内容)。如果您有代理服务器设置,urllib 将不起作用。
Check if you have some proxy settings in your Internet Explorer: Menu Extras->Internet Options, there Connections->"LAN settings" (or something similar). If you have a Proxy server setting, urllib will not work.