python 爬取京东
时间: 2024-03-02 09:46:57 浏览: 107
要使用Python爬取京东,你可以使用第三方库如requests和BeautifulSoup来实现。下面是一个简单的示例代码,演示如何爬取京东商品信息:
```python
import requests
from bs4 import BeautifulSoup
def get_jd_product(keyword):
url = f'https://search.jd.com/Search?keyword={keyword}&enc=utf-8'
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36'
}
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
products = soup.select('.gl-item')
for product in products:
name = product.select('.p-name')[0].text.strip()
price = product.select('.p-price')[0].text.strip()
print(f'商品名称:{name},价格:{price}')
# 调用函数进行爬取
get_jd_product('手机')
```
这段代码首先构造了一个搜索的URL,然后发送HTTP请求获取页面内容。接着使用BeautifulSoup解析页面,通过CSS选择器获取商品的名称和价格,并打印出来。
注意:爬取京东等商业网站时,请遵守网站的相关规定和法律法规,不要过度请求或进行非法操作。
阅读全文