用python写一段爬虫爬取汽车之家上的车型信息数据
时间: 2023-04-01 08:00:23 浏览: 213
汽车之家车型图片-python爬虫
你好,我可以回答这个问题。以下是使用 Python 编写的爬虫代码,可以爬取汽车之家上的车型信息数据:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.autohome.com.cn/car/'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
car_list = soup.find_all('div', class_='tab-content-item')
for car in car_list:
car_brand = car.find('div', class_='tab-content-item-title').text.strip()
car_models = car.find_all('h4')
for model in car_models:
car_model = model.text.strip()
print(car_brand, car_model)
```
这段代码会输出汽车之家上所有车型的品牌和型号信息。希望能对你有所帮助。
阅读全文