python统计古诗文网页上唐诗数量代码
时间: 2023-06-04 16:06:57 浏览: 363
poetry-web:一个唐宋诗词简单展示的web项目
以下是一个可以统计古诗文网页上唐诗数量的 Python 代码:
```
import requests
from bs4 import BeautifulSoup
url = "https://www.gushiwen.org/gushi/tangshi.aspx"
response = requests.get(url)
soup = BeautifulSoup(response.text, "html.parser")
tangshi_div = soup.find("div", {"class": "typecont", "id": "tang"})
tangshi_count = len(tangshi_div.find_all("a"))
print("唐诗数量:", tangshi_count)
```
请注意,这段代码只能统计古诗文网页上的唐诗数量,不能泛用于其他网站或数据源。
阅读全文