您可以访问属性
data-src
或data-srcset
来获取您想要的图像:
image = soup.find('img')
single_img = image.get('data-src') # return the main image link
或
import re
image = soup.find('img')
img_string = image.get('data-srcset') # this return a string you have to parse
img_set = re.findall(r'(https?://[^\s]+)', img_set) # regex to match only links
然后你就可以在img_set中访问你想要的任何索引(只需之前测试列表的长度)