为了账号安全,请及时绑定邮箱和手机立即绑定

如果其中一些图像已经在文件夹中,则无法让我的脚本下载其余图像

如果其中一些图像已经在文件夹中,则无法让我的脚本下载其余图像

30秒到达战场 2021-11-02 16:19:44
我在 python 中编写了一个脚本,用于从 Torrent 站点下载不同的电影图像并将它们存储在桌面的文件夹中。我的脚本可以下载图像并将其保存在一个文件夹中。如果文件夹中没有图像或所有图像都在,我的脚本可以处理下载或不下载的过程。如果某些图像已经在文件夹中,如何让我的脚本下载其余的图像?这是我的尝试:import osimport requestsfrom bs4 import BeautifulSoupfrom urllib.parse import urljoinlink = "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")
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 157 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信