मैं एक वेबसाइट के 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 का उपयोग कर रहा हूं।