Python3中,urllib和urllib2合并了,原来的urllib2相当于urllib.request
import urllib.request as url
response = url.urlopen('http://www.baidu.com/')
html = response.read()
print(html)
这样就可以获取网页内容了
发布于 2016-04-16 3788 次阅读
Python3中,urllib和urllib2合并了,原来的urllib2相当于urllib.request
import urllib.request as url
response = url.urlopen('http://www.baidu.com/')
html = response.read()
print(html)
这样就可以获取网页内容了
Comments NOTHING