用python写一份爬取什么值得买数据的代码
时间: 2023-04-09 22:00:47 浏览: 109
可以的,以下是一个简单的Python爬虫代码,用于爬取什么值得买网站的数据:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.smzdm.com/'
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')
items = soup.find_all('li', class_='feed-row-wide')
for item in items:
title = item.find('h5').text.strip()
link = item.find('a')['href']
price = item.find('div', class_='z-highlight').text.strip()
print(title, link, price)
```
这个代码使用requests库发送HTTP请求,然后使用BeautifulSoup库解析HTML页面,最后提取出需要的数据并打印出来。当然,具体的爬取规则可以根据实际需求进行调整。
阅读全文