“Python Soup Get href” Ответ

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

Возьмите HREF, используя 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']
FunnyName

Ответы похожие на “Python Soup Get href”

Вопросы похожие на “Python Soup Get href”

Больше похожих ответов на “Python Soup Get href” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования