基于python第三方库,图灵机器人,百度语音识别API的聊天机器人
1.python库准备 import wave import pyaudio 录制音频 import requests 获取百度API的token用 import os import base64 import json import win32com.client 用于读文字 import urllib.request import string import random 注意 win32com 安装我 pip 安装了好多次,使用 python -m pip install pypiwin32 ,其余模块直接 pip 安装,使用清华源 https://pypi.tuna.tsinghua.edu.cn/simple 比较快! 2.需要申请图灵账号以及创建机器人获取他的 apikey 以及 userId 3.生成音频文件名,(也可以不用这个,可以写死文件名直接覆盖)这样可以保存音频文件。 def file_name(): code_str = string.ascii_letters + string.digits ran_num = ''.join(random.sample(code_str, 6)) r_path = ran_num + '.wav' return r_path 4.朗读读图灵返回的内容 def read(content): speaker =