我需要下载https://www.archdaily.cn/这个网站的图片的python代码
时间: 2024-01-01 12:06:38 浏览: 167
python 图片下载代码
5星 · 资源好评率100%
可以使用Python的库 BeautifulSoup 和 requests 来实现。以下是一个示例代码:
```
import requests
from bs4 import BeautifulSoup
url = 'https://www.archdaily.cn/'
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']
if image_url.endswith('.jpg') or image_url.endswith('.png'):
response = requests.get(image_url)
with open(image_url.split('/')[-1], 'wb') as f:
f.write(response.content)
print(f"下载成功:{image_url}")
```
请注意这仅是一个简单示例,可能需要根据具体的需求进行修改。
阅读全文