帮我写个Python程序,每天抓取店铺中商品到手价和活动机智
时间: 2024-03-28 13:04:50 浏览: 52
基于Python语言实现(可定向抓取商品数据)_ python 比价网
好的,我可以帮你写一个Python程序来抓取店铺中的商品到手价和活动机智。我们可以使用Python中的requests库和BeautifulSoup库来实现这个任务。以下是代码示例:
```python
import requests
from bs4 import BeautifulSoup
url = "http://www.example.com/shop" # 请替换为你所需抓取的店铺链接
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
products = soup.find_all('div', {'class': 'product'})
for product in products:
name = product.find('h3').text
price = product.find('span', {'class': 'price'}).text
discount = product.find('span', {'class': 'discount'}).text
print(name, price, discount)
```
这个程序会从指定的网址抓取店铺中的商品信息,包括商品名称、到手价和活动机智,并且会将这些信息打印出来。你可以将这些信息保存到文件或者数据库中,以备后续分析使用。
阅读全文