写一段调用百度API的Python代码
时间: 2023-02-26 14:46:08 浏览: 107
基于Python的人脸识别系统(百度API)本科毕业设计完整代码
5星 · 资源好评率100%
# 导入相关模块
import requests
import json# 百度开发者的API Key
API_KEY = '您的API Key'# 请求URL
url = 'http://api.fanyi.baidu.com/api/trans/vip/translate'# 构建请求参数
params = {
'q': 'hello world',
'from': 'en',
'to': 'zh',
'appid': API_KEY
}# 请求百度API
response = requests.get(url, params=params)# 解析结果
if response.status_code == 200:
# 将字符串转换为JSON
json_data = json.loads(response.text)
# 获取翻译结果
result = json_data['trans_result'][0]['dst']
# 输出翻译结果
print(result)
else:
print('API request failed.')
阅读全文