“Python -Suppe GET HREF” Code-Antworten

Python -Suppe 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

Schnapp dir einen Href mit beuatululer Suppe

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

Ähnliche Antworten wie “Python -Suppe GET HREF”

Fragen ähnlich wie “Python -Suppe GET HREF”

Weitere verwandte Antworten zu “Python -Suppe GET HREF” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen