python爬取网页http://10.1.88.252:7000/获取每本书籍名称,书籍章节,章节内容
时间: 2023-08-16 18:05:51 浏览: 85
好的,这可以通过 Python 中的 requests 库和 BeautifulSoup 库来实现。以下是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
# 发送请求
url = 'http://10.1.88.252:7000/'
response = requests.get(url)
# 解析HTML内容
soup = BeautifulSoup(response.text, 'html.parser')
# 获取每本书的标签
books = soup.find_all('div', class_='book')
# 遍历每本书
for book in books:
# 获取书名
title = book.find('h2').text
print('书名:', title)
# 获取章节
chapters = book.find_all('div', class_='chapter')
for chapter in chapters:
# 获取章节标题
chapter_title = chapter.find('h3').text
print('章节:', chapter_title)
# 获取章节内容
chapter_content = chapter.find('div', class_='content').text
print('内容:', chapter_content)
```
这个代码会依次输出每本书的名称、每个章节的标题和内容。你可以根据自己的需求修改这个代码。
阅读全文