写一个爬虫小米便签的代码
时间: 2023-02-27 22:03:30 浏览: 54
您好!以下是一个使用 Python 爬取小米便签的简单代码示例:
```
import requests
from bs4 import BeautifulSoup
url = "https://notes.xiaomi.com/pages/index"
# 请求页面
response = requests.get(url)
# 解析 HTML
soup = BeautifulSoup(response.text, "html.parser")
# 提取便签列表
notes_list = soup.find_all("div", class_="note-list-item")
# 遍历便签列表,提取标题和内容
for note in notes_list:
title = note.find("h4").text
content = note.find("p").text
print("标题:" + title)
print("内容:" + content)
```
请注意,如果您未经小米公司许可,爬取他们的网站可能是违法的。
阅读全文