101

我正在尝试编写一个程序,该程序将从网站下载 mp3,然后将它们连接在一起,但是每当我尝试下载文件时,都会出现此错误:

Traceback (most recent call last):
File "/home/tesla/PycharmProjects/OldSpice/Voicemail.py", line 214, in <module> main()
File "/home/tesla/PycharmProjects/OldSpice/Voicemail.py", line 209, in main getMp3s()
File "/home/tesla/PycharmProjects/OldSpice/Voicemail.py", line 134, in getMp3s
raw_mp3.add = urllib.urlretrieve("http://www-scf.usc.edu/~chiso/oldspice/m-b1-hello.mp3")
AttributeError: 'module' object has no attribute 'urlretrieve'

导致此问题的行是

raw_mp3.add = urllib.urlretrieve("http://www-scf.usc.edu/~chiso/oldspice/m-b1-hello.mp3")
4

3 回答 3

242

当您使用 Python 3 时,urllib不再有模块。它被分成几个模块。

这相当于urlretrieve

import urllib.request
data = urllib.request.urlretrieve("http://...")

urlretrieve它的行为与 Python 2.x 中的行为完全相同,因此它可以正常工作。

基本上:

  • urlretrieve将文件保存到临时文件并返回一个元组(filename, headers)
  • urlopen返回一个Request对象,其read方法返回一个包含文件内容的字节串
于 2013-07-31T03:26:57.373 回答
10

Python 2+3 兼容的解决方案是:

import sys

if sys.version_info[0] >= 3:
    from urllib.request import urlretrieve
else:
    # Not Python 3 - today, it is most likely to be Python 2
    # But note that this might need an update when Python 4
    # might be around one day
    from urllib import urlretrieve

# Get file from URL like this:
urlretrieve("http://www-scf.usc.edu/~chiso/oldspice/m-b1-hello.mp3")
于 2015-12-07T07:10:07.627 回答
5

假设您有以下代码行

MyUrl = "www.google.com" #Your url goes here
urllib.urlretrieve(MyUrl)

如果您收到以下错误消息

AttributeError: module 'urllib' has no attribute 'urlretrieve'

然后你应该尝试下面的代码来解决这个问题:

import urllib.request
MyUrl = "www.google.com" #Your url goes here
urllib.request.urlretrieve(MyUrl)
于 2018-02-21T00:14:36.247 回答