ImportError: No module named request,我是Python 2.7.3
ImportError: No module named request,我是Python 2.7.3
from urllib import request,提示ImportError: cannot import name request 展开
解决办法:
1.WIN键+R键;
2.输如cmd;
3.输入pip install requests并按确认键,等待执行完成即可。
ModuleNotFoundError: No module named 'bs4'
解决办法:
1.WIN键+R键;
2.输如cmd;
3.输入pip install beautifulsoup4并按确认键,等待执行完成即可。
urllib2.Request 可能会解决你的问题
import urllib.request
def test():
try:
urladd = 'http://www.icafe8.com/icafe/archive/DisklessServer1.1.0.0.exe'
localfile = 'c:/temp/DiskLessServer.exe'
urllib.request.urlretrieve(urladd, localfile)
except (Exception) as ex:
print(ex)
if __name__=='__main__': test()
D:\test\epp>c:\python32\python cu20111019a.py
D:\test\epp>dir c:\temp
驱动器 C 中的卷没有标签。
卷的序列号是 F07C-BDCA
c:\temp 的目录
2011/10/19 19:26 <DIR> .
2011/10/19 19:26 <DIR> ..
2011/10/19 19:26 10,140,016 DiskLessServer.exe
2011/08/15 14:03 2 log.txt
2011/08/19 15:53 143 temp.py
2011/10/14 13:55 23 test.log
4 个文件 10,140,184 字节
2 个目录 23,355,830,272 可用字节
没报错啊,很正常的下载到了那个文件。