BeautifulSoup中has_attr和attrs使用

from bs4 import BeautifulSoup
import requests,lxml

r = requests.get('http://www.xiachufang.com/')
soup = BeautifulSoup(r.text,'lxml')

for img in soup.select('img'):
    if img.has_attr('data-src'):
        print((img.attrs['data-src']).split("?")[0])
    else:
        print((img.attrs['src']).split("?")[0])

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章