Python爬虫牛刀小试,爬取网站上一只猫的图片源码
import urllib.request#调用urllib库,关于网页的req = urllib.request.Request('http://placekitten.com/g/500/600')#编写拟爬取网站的网址给reqresponse = urllib.request.urlopen(req)#打开网址cat_img=response.read()#读取图片的内容给cat_imgwith open('cat_500_600.jpg','wb') as f :#打开