当前位置:   article > 正文

python-通过特定的文本 爬取网页链接(标签)_a.attrs

a.attrs
  1. from bs4 imp
  2. #html文本
  3. html_text=""
  4. soup=BeautifulSoup(html_text,'html.parser')
  5. a=soup.select('a')
  6. for i in a:
  7. if i.string=="关键词":
  8. findb_ur=i['href']
  9. #输出通过搜索a标签中的字符串获得网页链接
  10. # print(findb_url)
  11. #findb_url="https:"+finburl
  1. alist=soup.find_all('a)
  2. for a in alist:
  3. 1.通过下标操作的方式
  4. href=a['href']
  5. print(htref)
  6. 2.通过attrs属性的方式
  7. href=a.attrs['href']
  8. print(href)

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/650354
推荐阅读
相关标签
  

闽ICP备14008679号