我正在尝试使用 urllib 获取网页。我正在使用 Python 3.3 和 Sublime Text 2 执行以下代码时遇到问题
import os
from urllib.request import urlopen
remoteaddr = 'http://paulgraham.com/fr.html'
remotefile = urlopen(remoteaddr)
remotedata = remotefile.readlines()
remotefile.close()
for line in remotedata:
print(line)
它产生以下错误
Traceback (most recent call last):
File "..\Documents\Pydev\ftp\test.py", line 2, in <module>
from urllib.request import urlopen
ImportError: bad magic number in 'urllib': b'\x03\xf3\r\n'
[Finished in 0.1s with exit code 1]
如果我使用 Aptana 运行代码,它可以正确执行,我更愿意为我的开发人员使用 ST2,关于问题可能是什么的任何想法?我已将 ST2 添加到防火墙中允许的程序中。