python爬虫天气预报
时间: 2023-08-25 17:18:27 浏览: 119
天气预报微信发送指定好友.txt
你可以使用 Python 的爬虫技术来获取天气预报数据。首先,你需要确定一个可靠的天气预报网站,例如中国气象网(http://www.weather.com.cn/)或者其他提供天气预报数据的网站。
然后,你可以使用 Python 的第三方库,例如 requests、BeautifulSoup等来发送网络请求并解析网页内容。以下是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
def get_weather(city):
url = f'http://www.weather.com.cn/weather/{city}.shtml'
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}
response = requests.get(url, headers=headers)
response.encoding = 'utf-8'
html = response.text
soup = BeautifulSoup(html, 'html.parser')
weather = soup.find(class_='wea').text
temperature = soup.find(class_='tem').text
return f'{city}的天气:{weather},温度:{temperature}'
city = '北京' # 你可
阅读全文