python抓取小红书
时间: 2023-10-23 07:13:59 浏览: 177
爬取小红书数据的python项目
要抓取小红书的数据,你可以使用Python中的第三方库如requests和BeautifulSoup来实现。首先,你需要找到小红书的数据接口,并使用requests库发送HTTP请求来获取数据。然后,你可以使用BeautifulSoup库对返回的HTML进行解析,提取出你所需的信息。
以下是一个示例代码,用于抓取小红书的热门商品数据:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.xiaohongshu.com/discovery/item/5f823f4a0000000020000be3'
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'
}
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
# 提取商品名称
name = soup.find('h1', {'class': 'title'}).text.strip()
# 提取商品价格
price = soup.find('span', {'class': 'price'}).text.strip()
print('商品名称:', name)
print('商品价格:', price)
```
阅读全文