赞
踩
- from bs4 imp
- #html文本
- html_text=""
-
- soup=BeautifulSoup(html_text,'html.parser')
- a=soup.select('a')
- for i in a:
- if i.string=="关键词":
- findb_ur=i['href']
- #输出通过搜索a标签中的字符串获得网页链接
- # print(findb_url)
- #findb_url="https:"+finburl
- alist=soup.find_all('a)
- for a in alist:
- 1.通过下标操作的方式
- href=a['href']
- print(htref)
- 2.通过attrs属性的方式
- href=a.attrs['href']
- print(href)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。