1. 程式人生 > >Python爬蟲(BeautifulSoup)實戰:抓取豆瓣讀書新書速遞模組

Python爬蟲(BeautifulSoup)實戰:抓取豆瓣讀書新書速遞模組

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('################################################################################################################################')