python抓取天气预报
时间: 2023-11-09 07:00:48 浏览: 160
python获取天气预报
4星 · 用户满意度95%
可以使用Python中的requests和BeautifulSoup库来抓取天气预报。首先需要找到一个提供天气预报信息的网站,然后使用requests库发送请求获取网页源代码,再使用BeautifulSoup库解析网页源代码,最后提取出需要的天气预报信息即可。
以下是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.tianqi.com/beijing/'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
# 获取天气预报信息
weather = soup.find('div', class_='wea_weather').text.strip()
temperature = soup.find('div', class_='wea_temperature').text.strip()
print('天气:', weather)
print('温度:', temperature)
```
阅读全文