如何在bs4中找到多个CSS类?

时间:2019-03-31 17:28:05

标签: python-3.x

我想使用python将图像从Imgur写入硬盘。我使用Imgur API获取相册链接,例如https://imgur.com/a/qRZ79lm。现在我想在这种情况下也找到具有文件扩展名链接的css类

<a class="zoom" title="" href="//i.imgur.com/JD9hq2f.jpg"><img alt="" src="//i.imgur.com/JD9hq2f.jpg" original-title="" style="max-width: 100%; min-height: 720px;"></a>

但是我似乎找不到正确的href。

url ='https://imgur.com/a/qRZ79lm'

res = requests.get(URL) res.raise_for_status()

汤= BeautifulSoup(res.text,'html.parser')

对于a in soup.find_all('a',href = True):     print('找到URL:'+ a ['href'])

0 个答案:

没有答案