我在 python 中编写了一个脚本,用于从 Torrent 站点下载不同的电影图像并将它们存储在桌面的文件夹中。我的脚本可以下载图像并将其保存在一个文件夹中。
如果文件夹中没有图像或所有图像都在,我的脚本可以处理下载或不下载的过程。
如果某些图像已经在文件夹中,如何让我的脚本下载其余的图像?
这是我的尝试:
import os
import requests
from bs4 import BeautifulSoup
from urllib.parse import urljoin
link = "https://www.yify-torrent.org/search/1080p/"
dirf = os.environ['USERPROFILE'] + '\Desktop\Images'
if not os.path.exists(dirf):os.makedirs(dirf)
os.chdir(dirf)
items = len([name for name in os.listdir(dirf) if os.path.isfile(os.path.join(dirf, name))])
if not items:
response = requests.get(link)
soup = BeautifulSoup(response.text, "lxml")
for item in soup.select(".img-item .poster-thumb"):
filename = item['src'].split('/')[-1]
with open(filename, 'wb') as f:
f.write(requests.get(urljoin(link,item['src'])).content)
else:
print("All images are there")
相关分类