PHP前端开发

python爬虫怎么爬取图片

百变鹏仔 3天前 #Python
文章标签 爬虫
通过 Python 中的 BeautifulSoup、Requests、Pillow 库,可以爬取图片:导入库获取网页内容找到包含图片 URL 的元素下载图片保存图片

使用 Python 爬取图片

如何使用 Python 爬取图片?

可以通过使用 Python 中的第三方库,例如 BeautifulSoup、Requests 和 Pillow,来爬取图片。具体步骤如下:

  1. 导入所需的库:

    立即学习“Python免费学习笔记(深入)”;

    from bs4 import BeautifulSoupimport requestsfrom PIL import Image
  2. 获取网页内容:

    url = "https://mywebsite.com/images/"response = requests.get(url)soup = BeautifulSoup(response.text, "html.parser")
  3. 找到包含图片 URL 的元素:

    image_urls = [img["src"] for img in soup.find_all("img")]
  4. 下载图片:

    for image_url in image_urls: response = requests.get(image_url) with open("image.jpg", "wb") as f:     f.write(response.content)
  5. 保存图片:

    image = Image.open("image.jpg")image.save("my_image.jpg")

扩展内容: