当前位置:首页 > 行业动态 > 正文

批量html提取图片_HTML输入

要批量提取HTML中的图片,可以使用Python的BeautifulSoup库,以下是详细步骤:

批量html提取图片_HTML输入  第1张

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中的图片并保存到本地。

0