生成一个爬取当当网计算机书籍数据的代码
时间: 2023-09-19 08:05:50 浏览: 125
Python爬取当当、京东、亚马逊图书信息代码实例
好的,以下是一个爬取当当网计算机书籍数据的 Python 代码示例:
```python
import requests
from bs4 import BeautifulSoup
url = "http://search.dangdang.com/?key=计算机&act=input&page_index=1"
response = requests.get(url)
soup = BeautifulSoup(response.text, "html.parser")
book_list = soup.find_all(class_="pic")
for book in book_list:
title = book.find("a")["title"]
link = book.find("a")["href"]
author = book.find(class_="search_book_author").text.strip()
price = book.find(class_="price_n").text.strip()
print(title, link, author, price)
```
这个代码会爬取当当网上搜索关键词为“计算机”的书籍数据,并输出每本书的标题、链接、作者和价格。你可以根据自己的需求修改搜索关键词和其他参数。注意:爬取网站数据时请遵守相关法律法规和网站的爬虫协议。
阅读全文