Python爬虫很难?10行代码写一个最简单的图片爬虫
前言
本文的文字及图片来源于网络,仅供学习、交流使用,不具有任何商业用途,版权归原作者所有,如有问题请及时联系我们以作处理。
受害网站
http://www.win4000.com/meinv197522_3.html
开始代码
导入工具
import reimport requests
请求网页,得到html
index_url = "http://www.win4000.com/meinv197522_3.html"response
= requests.get(index_url)print(response.text)r
= re.findall("<img class="pic-large" src="http://static.win4000.com/home/images/placeholder.jpg" data-original="(.*?)" url=".*?" />", response.text, re.S)image_url
= r[0]
下载图片保存到本地
image_response = requests.get(image_url)image_name
= image_url.split("/")[-1]
图片 视频 音频 都是二进制 暂时先记住
with open(image_name, mode="wb") as f:# content 内容f.write(image_response.content)
运行代码就可以把网页的图片爬取下来了
以上是 Python爬虫很难?10行代码写一个最简单的图片爬虫 的全部内容, 来源链接: utcz.com/z/530818.html