python网络爬虫

最近在学python,发现网上的资料大多是2.x版本的,但是python的一些用法有了变化

下面是在练习网络爬虫时遇到的问题,现在将网络爬虫的3.x版本的写下

(注意request)

import urllib.request

import webbrowser

url = 'http://www.baidu.com'

content = urllib.request.urlopen(url).read()

open('baidu.com.html','wb').write(content)

wKioL1MjBI-TzGaeAACTedzz3Ls460.jpg

你可能感兴趣的:(python,request,import,content,write)