python爬虫58同城二手车价格
时间: 2023-08-28 11:15:40 浏览: 220
如果您只想爬取58同城二手车的价格信息,可以使用以下代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://bj.58.com/ershouche/'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
car_items = soup.select('.carlist .list li')
for item in car_items:
title = item.select_one('h2 a').text.strip()
price = item.select_one('.priType-s b').text.strip()
print(title, price)
```
这段代码使用requests库发起HTTP请求,然后用BeautifulSoup库解析HTML页面,最后从页面中提取出所有二手车的标题和价格信息。需要注意的是,这段代码只能爬取当前页面的二手车价格信息,如果需要爬取多页信息,需要在代码中添加翻页的逻辑。
阅读全文