python爬取京东数据
时间: 2023-10-09 11:11:59 浏览: 121
利用python爬取京东数据
5星 · 资源好评率100%
以下是一个简单的Python爬虫程序,用于爬取京东网站的商品数据:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://search.jd.com/Search?keyword=手机'
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')
products = soup.find_all('li', {'class': 'gl-item'})
for product in products:
name = product.find('div', {'class': 'p-name'}).find('a').text.strip()
price = product.find('strong', {'class': 'J_price'}).text.strip()
print(name, price)
```
此程序使用requests和BeautifulSoup库来请求和解析京东搜索结果页面。它获取每个商品的名称和价格,并将其打印到控制台。修改“https://search.jd.com/Search?keyword=手机”中的“手机”以搜索不同的商品类型。
阅读全文