python语音播报天气预报_使用python编写智能语音天气预报,小白也能装酷

#导入使用的模块(如果缺失,就是用pip安装)

import urllib.parse #(解析)

import urllib.request #(请求)

import gzip #(解压)

import json #(数据格式)

import playsound #(语音播报)

from aip import AipSpeech #(合成语音)

import matplotlib.pyplot as plt

import re #(正则表达式)

#设置参数,图片显示中文字符,否则乱码

plt.rcParams['font.sans-serif']=['SimHei']

#定义获取天气数据函数

def Get_weather_data():

print('------天气查询------')

city_name = input('请输入要查询的城市名称:')

url = 'http://wthrcdn.etouch.cn/weather_mini?city=' + urllib.parse.quote(city_name)

# 读取网页数据

weather_data = urllib.request.urlopen(url).read()

# 解压网页数据

weather_data = gzip.decompress(weather_data).decode('utf-8')

weather_dict = json.loads(weather_data)

return weather_dict

#定义当天天气输出格式

def Show_weather(weather_data):

weather_dict = weather_data

if weather_dict.get('desc') == 'invilad-citykey':

print('你输入的城市有误或未收录天气,请重新输入...')

elif weather_dict.get('desc') == 'OK':

forecast = weather_dict.get('data').get('forecast')

print('日期:', forecast[0].get('date'))

print('城市:', weather_dict.get('data').get('city'))

print('天气:', forecast[0].get('type'))

print('温度:', weather_dict.get('data').get('wendu') + '℃ ')

print('高温:', forecast[0].get('high'))

print('低温:', forecast[0].get('low'))

print('风级:', forecast[0].get('fengli').split('

print('风向:', forecast[0].get('fengxiang'))

weather_forecast_txt = '您好,您所在的城市%s,' \

'天气%s,' \

'当前温度%s,' \

'今天最高温度%s,' \

'最低温度%s,' \

'风级%s,' \

'温馨提示:%s' % \

(

weather_dict.get('data').get('city'),

forecast[0].get('type'),

weather_dict.get('data').get('wendu'),

forecast[0].get('high'),

forecast[0].get('low'),

forecast[0].get('fengli').split('

weather_dict.get('data').get('ganmao'))

return weather_forecast_txt,forecast

#定义语音播报今天天气状况

def Voice_broadcast(weather_forcast_txt):

weather_forecast_txt = weather_forcast_txt

APP_ID = '11793737'

API_KEY = 'Mx8wLzbFk2VNVcjybf8lDzFH'

SECRET_KEY = 'DEc7I5q18z7aazW22LKDgwGocZ8h9VdR'

client = AipSpeech(APP_ID, API_KEY, SECRET_KEY)

print('语音提醒:', weather_forecast_txt)

#百度语音合成

result = client.synthesis(weather_forecast_txt, 'zh', 1, {'vol': 5})

if not isinstance(result, dict):

with open('sound2.mp3', 'wb') as f:

f.write(result)

f.close()

#playsound模块播放语音

playsound.playsound(r'D:\sound2.mp3')

#未来四天天气变化图

def Future_weather_states(forecast):

future_forecast = forecast

dict={}

#获取未来四天天气状况

for i in range(5):

data = []

date=future_forecast[i]['date']

date = int(re.findall('\d+',date)[0])

data.append(int(re.findall('\d+',future_forecast[i]['high'])[0]))

data.append(int(re.findall('\d+', future_forecast[i]['low'])[0]))

data.append(future_forecast[i]['type'])

dict[date] = data

data_list = sorted(dict.items())

date=[]

high_temperature = []

low_temperature = []

for each in data_list:

date.append(each[0])

high_temperature.append(each[1][0])

low_temperature.append(each[1][1])

fig = plt.plot(date,high_temperature,'r',date,low_temperature,'b')

plt.xlabel('日期')

plt.ylabel('℃')

plt.legend(['高温','低温'])

plt.xticks(date)

plt.title('最近几天温度变化趋势')

plt.show()

#主函数

if __name__=='__main__':

weather_data = Get_weather_data()

weather_forecast_txt, forecast = Show_weather(weather_data)

Future_weather_states(forecast)

Voice_broadcast(weather_forecast_txt)

好的,我可以为您提供一些参考代码和思路。 首先,您可以使用Python中的requests库获取天气预报的数据。根据您所在的地理位置和天气数据源,您可能需要使用不同的API接口,例如OpenWeatherMap、中国天气网等。在获取到天气数据之后,您可以使用Python中的json库或xml库来解析数据。 接着,您可以使用Python中的pygame库来播放语音。将天气预报转换为语音文件的方法有很多种,例如使用百度AI开放平台的语音合成API使用Google Text-to-Speech API等。其中,百度AI开放平台的语音合成API使用起来比较方便,具体使用方法可以参考官方文档。 最后,您可以将获取到的天气数据和语音播放代码结合起来,实现天气预报语音播报的功能。 下面是一个简单的示例代码,供您参考: ```python import requests import json import pygame from aip import AipSpeech # 获取天气预报数据 weather_api_url = 'http://api.openweathermap.org/data/2.5/weather?q=city_name&appid=api_key' city_name = 'Shanghai' # 城市名称 api_key = 'your_api_key' # API密钥 url = weather_api_url.replace('city_name', city_name).replace('api_key', api_key) response = requests.get(url) weather_data = json.loads(response.text) # 解析天气预报数据 temperature = weather_data['main']['temp'] - 273.15 # 温度(单位:摄氏度) description = weather_data['weather'][0]['description'] # 天气描述 # 将天气预报转换为语音 APP_ID = 'your_app_id' # APP ID API_KEY = 'your_api_key' # API密钥 SECRET_KEY = 'your_secret_key' # 密钥 client = AipSpeech(APP_ID, API_KEY, SECRET_KEY) result = client.synthesis('今天的天气是' + description + ',温度是' + str(round(temperature, 1)) + '摄氏度。', 'zh', 1, {'vol': 5}) if not isinstance(result, dict): with open('weather.mp3', 'wb') as f: f.write(result) # 播放语音 pygame.mixer.init() pygame.mixer.music.load('weather.mp3') pygame.mixer.music.play() while pygame.mixer.music.get_busy() == True: continue ``` 需要注意的是,该示例代码使用了百度AI开放平台的语音合成API,您需要在使用之前去官网注册账号并申请API密钥。另外,该示例代码使用了pygame库来播放语音,如果您使用的是其他的播放音频的库,则可能需要进行相应的修改。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值