Python爬蟲(BeautifulSoup)實戰:抓取豆瓣讀書新書速遞模組
阿新 • • 發佈:2018-12-18
import requests from bs4 import BeautifulSoup html = requests.get('https://book.douban.com/').text soup = BeautifulSoup(html, 'lxml') html_content = soup.select('#content .slide-list li') print('################################################################################################################################') for i in html_content: book = i.select('.cover a') if len(book): name = book[0].attrs['title'] link = book[0].attrs['href'] print('書名:%s,連結:%s' % (name, link)) print('################################################################################################################################')