Programing

AttributeError : '모듈'개체에 'urlretrieve'속성이 없습니다.

lottogame 2020. 11. 23. 07:40
반응형

AttributeError : '모듈'개체에 'urlretrieve'속성이 없습니다.


웹 사이트에서 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")

Python 3을 사용하고 있으므로 더 이상 urllib 모듈이 없습니다. 여러 모듈로 분할되었습니다.

이것은 urlretrieve와 동일합니다.

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

urlretrieve는 Python 2.x에서와 똑같은 방식으로 작동하므로 잘 작동합니다.

원래:

  • urlretrieve 파일을 임시 파일에 저장하고 튜플을 반환합니다. (filename, headers)
  • urlopen메서드가 파일 내용을 포함하는 바이트 문자열을 반환하는 Request객체를 read반환합니다.

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")

다음 코드 줄이 있다고 가정합니다.

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)

참고 URL : https://stackoverflow.com/questions/17960942/attributeerror-module-object-has-no-attribute-urlretrieve

반응형