“Zupa Python zdobądź href” Kod odpowiedzi

Zupa Python zdobądź 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

Chwyć href za pomocą zupy beuatyful

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

Odpowiedzi podobne do “Zupa Python zdobądź href”

Pytania podobne do “Zupa Python zdobądź href”

Więcej pokrewnych odpowiedzi na “Zupa Python zdobądź href” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu