爬取网页数据
Posted tzxy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了爬取网页数据相关的知识,希望对你有一定的参考价值。
import urllib.request # r=urllib.request.urlopen("http://183.247.167.54:7009/#/map") # print(r.read())#爬取网页源码 r=urllib.request.urlopen("http://183.247.167.54:7009/static/img/logo.ac2237a.png") rs=r.read() with open("1.png","wb") as a: a.write(rs)#爬取图片
以上是关于爬取网页数据的主要内容,如果未能解决你的问题,请参考以下文章