https://fanqienovel.com/page/7111874278269652002?enter_from=stack-room,请用python编写代码爬取上述网址的前10章内容。
时间: 2023-12-18 20:02:59 浏览: 134
好的,我可以为您提供一个基于 requests 和 BeautifulSoup 的简单爬虫代码。请确保您已经安装了这两个库。
```
import requests
from bs4 import BeautifulSoup
url = "https://fanqienovel.com/page/7111874278269652002?enter_from=stack-room"
response = requests.get(url)
soup = BeautifulSoup(response.content, 'html.parser')
chapters = soup.find_all('div', class_='chapter')
for chapter in chapters[:10]:
title = chapter.find('h2').text
content = chapter.find('div', class_='content').text
print(title)
print(content)
print('-----------------------------------------')
```
这段代码会请求指定网址,并使用 BeautifulSoup 解析 HTML 内容。然后,它会找到所有的 class 属性为 `chapter` 的 div 元素,并遍历前 10 个元素。对于每个章节,它将找到标题和内容,并将它们打印出来,以及一些分隔符。
阅读全文