Answers for "beautiful soup how to find href"

4

beuatiful soup find a href

from BeautifulSoup import BeautifulSoup

html = '''<a href="some_url">next</a>
<span class="class"><a href="another_url">later</a></span>'''

soup = BeautifulSoup(html)

for a in soup.find_all('a', href=True):
    print "Found the URL:", a['href']
Posted by: Guest on May-12-2020
0

grab a href using beuatiful soup

from BeautifulSoup import BeautifulSoup

html = '''<a href="some_url">next</a>
<span class="class"><a href="another_url">later</a></span>'''

soup = BeautifulSoup(html)

for a in soup.find_all('a', href=True):
    print "Found the URL:", a['href']
Posted by: Guest on July-17-2021

Code answers related to "beautiful soup how to find href"

Python Answers by Framework

Browse Popular Code Answers by Language