Python是一個非常強大的編程語言,可以實現各種各樣的功能,其中包括網頁抓圖。
import requests from bs4 import BeautifulSoup url = "https://www.example.com" response = requests.get(url) html = response.content soup = BeautifulSoup(html, 'html.parser') images = soup.find_all('img') for image in images: image_url = image['src'] response = requests.get(image_url) with open(image_url.split('/')[-1], 'wb') as f: f.write(response.content) print("所有圖片已經下載完畢!")
以上代碼使用了Python的requests庫來獲取網頁HTML代碼,然后使用BeautifulSoup庫來解析HTML代碼。接著,我們找到所有的圖片標簽,獲取圖片的地址,并使用requests庫下載圖片并保存到本地。
以上就是Python抓取網頁圖片的簡單介紹,我們可以使用這個技巧來爬取各種網站的圖片資源。
上一篇vue制作圖片
下一篇python 正態分布數