需要在以下输出中从“ a”标签获取“ href”值

时间:2019-02-09 19:24:36

标签: python python-3.x web-scraping beautifulsoup

我正在编写一个Python 3代码,使用漂亮的汤进行网络抓取。下面是代码:

page_soup= soup(html,"html.parser")

##finding all 'a' tags of the page whose class was 'image'
containers = page_soup.findAll("a",{"class":"image"})

print(containers[0]) #containers length is 15

containers[0]输出:

containers[0] output

现在,我需要编写一个循环,并从'a'标签中找出所有href组件。我该怎么办?

0 个答案:

没有答案