网页爬取
Posted nxrs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网页爬取相关的知识,希望对你有一定的参考价值。
1、图片爬取代码
import requests import os root = "H:/美图/" url = "https://k.zol-img.com.cn/sjbbs/7692/a7691501_s.jpg" path = root + url.split("/")[-1] try: if not os.path.exists(root): os.mkdir(root) if not os.path.exists(path): r = requests.get(url) r.raise_for_status() with open(path, "wb") as f: f.write(r.content) f.close() print("文件保存成功") else: print("文件已经存在") except: print("爬取失败")
以上是关于网页爬取的主要内容,如果未能解决你的问题,请参考以下文章