要批量提取HTML中的图片,可以使用Python的BeautifulSoup库,以下是详细步骤:
(图片来源网络,侵删)
1、安装所需库
确保已经安装了beautifulsoup4
和requests
库,如果没有安装,可以使用以下命令安装:
pip install beautifulsoup4 requests
2、导入库
在Python脚本中,导入所需的库:
from bs4 import BeautifulSoup import requests
3、获取HTML内容
使用requests
库获取网页的HTML内容:
url = 'https://example.com' # 替换为你要提取图片的网址 response = requests.get(url) html_content = response.text
4、解析HTML
使用BeautifulSoup
解析HTML内容:
soup = BeautifulSoup(html_content, 'html.parser')
5、提取图片链接
从解析后的HTML中提取图片链接:
img_tags = soup.find_all('img') img_urls = [img['src'] for img in img_tags if 'src' in img.attrs]
6、下载图片
将提取到的图片链接下载到本地:
import os def download_image(url, save_path): response = requests.get(url) with open(save_path, 'wb') as f: f.write(response.content) save_dir = 'images' # 保存图片的文件夹 os.makedirs(save_dir, exist_ok=True) for img_url in img_urls: img_name = img_url.split('/')[1] save_path = os.path.join(save_dir, img_name) download_image(img_url, save_path)
将以上代码整合到一个Python脚本中,运行后即可批量提取HTML中的图片并保存到本地。
原创文章,作者:未希,如若转载,请注明出处:https://www.kdun.com/ask/671760.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复