以下是一個使用Python爬取寫真網站全部圖片的示例代碼:
import requests
from bs4 import BeautifulSoup
import os
# 定義寫真網站的URL
url = 'https://example.com'
# 發送請求獲取網頁內容
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
# 在網頁中查找圖片鏈接
image_links = []
for img in soup.find_all('img'):
image_links.append(img['src'])
# 創建保存圖片的文件夾
os.makedirs('images', exist_ok=True)
# 下載圖片并保存到本地
for link in image_links:
response = requests.get(link)
filename = os.path.join('images', link.split('/')[-1])
with open(filename, 'wb') as f:
f.write(response.content)
print('Saved', filename)
請注意,這只是一個示例代碼,實際使用時需要根據具體的寫真網站頁面結構進行相應的修改和優化。另外,爬取網站的圖片需要遵守網站的使用規范,以免侵犯他人的版權。