“sopa de python consigue href” Código de respuesta

sopa de python consigue 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

Tome un href usando sopa beuatis

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

Respuestas similares a “sopa de python consigue href”

Preguntas similares a “sopa de python consigue href”

Más respuestas relacionadas con “sopa de python consigue href” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código