Python을 사용하여 웹 사이트의 HTML 소스 코드를 다운로드하려고 하는데이 오류가 발생합니다.
Traceback (most recent call last):
File "C:\Users\Sergio.Tapia\Documents\NetBeansProjects\DICParser\src\WebDownload.py", line 3, in <module>
file = urllib.urlopen("http://www.python.org")
AttributeError: 'module' object has no attribute 'urlopen'
나는 여기에 가이드를 따르고 있습니다 : http://www.boddie.org.uk/python/HTML.html
import urllib
file = urllib.urlopen("http://www.python.org")
s = file.read()
f.close()
#I'm guessing this would output the html source code?
print(s)
파이썬 3을 사용하고 있습니다.