python天气爬虫代码函数
时间: 2023-11-12 08:04:44 浏览: 136
以下是一个简单的 Python 天气爬虫代码函数:
```python
import requests
from bs4 import BeautifulSoup
def get_weather(city):
url = f'https://www.weather-forecast.com/locations/{city}/forecasts/latest'
response = requests.get(url)
soup = BeautifulSoup(response.content, 'html.parser')
weather = soup.find(class_='phrase').text.strip()
return weather
```
调用 `get_weather` 函数,传入城市名称,即可返回该城市的天气预报。例如,调用 `get_weather('london')` 将返回伦敦的天气预报。请注意,该函数使用了第三方库 `requests` 和 `beautifulsoup4`,需要先安装这两个库。
阅读全文