“Python Soup Get Href” Réponses codées

Python Soup Get 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']
nomjeeb

Prenez un href en utilisant la soupe beuatiful

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']
FunnyName

Réponses similaires à “Python Soup Get Href”

Questions similaires à “Python Soup Get Href”

Plus de réponses similaires à “Python Soup Get Href” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code