从beautifull soap为href指定变量

时间:2018-04-24 07:56:57

标签: python

我想将href找到的每个beautifulsoup分配给变量。例如 link1, link2, link3 ...。 我的功能现在看起来像这样

def board_list():
    html = driver.page_source
    soup=BeautifulSoup(html, "html.parser")
    for link in soup.findAll('a', {'class': 'board-tile'}):
        href = driver.current_url+link.get('href')
        title = link.string
        print(title)
        print(href)

0 个答案:

没有答案