python爬取辽宁省天气信息
时间: 2023-11-04 14:59:47 浏览: 114
可以使用Python中的requests库和BeautifulSoup库来爬取辽宁省的天气信息。以下是一个基本的爬取天气信息的示例代码:
```
import requests
from bs4 import BeautifulSoup
url = 'http://www.weather.com.cn/weather/101070201.shtml' # 辽宁省沈阳市的天气信息页面
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
weather = soup.find('p', class_='wea').text # 获取天气状况
temperature = soup.find('p', class_='tem').text.replace('℃', '') # 获取当前温度
print('今天的天气:{}\n当前温度:{}℃'.format(weather, temperature))
```
请注意,代码中的URL是一个示例,指向辽宁省沈阳市的天气信息页面。如果你要获取其他城市的天气信息,请更改URL。
阅读全文