帮我写一个python爬虫,爬取淘宝猜你喜欢
时间: 2023-08-25 18:00:46 浏览: 156
python实现淘宝爬虫
5星 · 资源好评率100%
好的,以下是一个简单的Python爬虫,可以爬取淘宝猜你喜欢的商品信息:
```python
import requests
from bs4 import BeautifulSoup
# 设置请求头部信息,模拟浏览器访问
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.36 Edge/16.16299'
}
# 获取猜你喜欢的商品列表页面
url = 'https://www.taobao.com/tbhome/page/market-list'
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
# 解析页面中的商品信息
items = soup.find_all('li', class_='item')
for item in items:
title = item.find('div', class_='title').text.strip()
price = item.find('div', class_='price').text.strip()
link = item.find('a', class_='link')['href']
print(title, price, link)
```
这段代码会输出猜你喜欢的商品的标题、价格和链接。你可以根据自己的需求对代码进行扩展,比如爬取更多的商品信息或者将结果保存到文件中等。
阅读全文