python爬虫爬取天气数据要求有省份对应的天气和温度
时间: 2024-02-21 08:25:09 浏览: 130
使用python爬虫对天气信息进行爬取
好的,您可以使用 Python 中的 requests 库和 Beautiful Soup 库来实现爬虫爬取天气数据。以下是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
# 爬取的网站
url = 'http://www.weather.com.cn/weather/101010100.shtml'
# 发送请求并获取页面内容
response = requests.get(url)
html = response.content
# 使用 Beautiful Soup 解析页面
soup = BeautifulSoup(html, 'html.parser')
# 查找省份、天气和温度信息
province = soup.find('div', {'class': 'crumbs fl'}).find_all('a')[-1].text
weather = soup.find('p', {'class': 'wea'}).text
temperature = soup.find('p', {'class': 'tem'}).find('span').text
# 打印结果
print('省份:', province)
print('天气:', weather)
print('温度:', temperature)
```
这个示例代码只是爬取了北京市的天气数据,您可以根据需要修改 url 中的城市代码来获取其他城市的天气数据。同时,您也可以将爬取的数据保存到文件或数据库中,以备后续使用。
阅读全文