代码
import json
import requests
# 翻译函数,word 需要翻译的内容
def translate(word):
# 有道词典 api
url = 'http://fanyi.youdao.com/translate?smartresult=dict&smartresult=rule&smartresult=ugc&sessionFrom=null'
# 传输的参数,其中 i 为需要翻译的内容
key = {
'type': "AUTO",
'i': word,
"doctype": "json",
"version": "2.1",
"keyfrom": "fanyi.web",
"ue": "UTF-8",
"action": "FY_BY_CLICKBUTTON",
"typoResult": "true"
}
# key 这个字典为发送给有道词典服务器的内容
response = requests.post(url, data=key)
# 判断服务器是否相应成功
if response.status_code == 200:
# 然后相应的结果
return response.text
else:
print("有道词典调用失败")
# 相应失败就返回空
return None
def get_reuslt(repsonse):
# 通过 json.loads 把返回的结果加载成 json 格式
result = json.loads(repsonse)
return result['translateResult'][0][0]['tgt']
def main(err):
word = err
list_trans = translate(word)
return get_reuslt(list_trans)
print(main('鱼'))
"""
"""
运行效果:
以上就是python 简单的调用有道翻译的详细内容,更多关于python 调用有道翻译的资料请关注软件开发网其它相关文章!
您可能感兴趣的文章:python利用google翻译方法实例(翻译字幕文件)Python 实现的 Google 批量翻译功能浅谈python实现Google翻译PDF,解决换行的问题python3使用urllib示例取googletranslate(谷歌翻译)python在命令行下使用google翻译(带语音)python翻译软件实现代码(使用google api完成)Python爬虫爬取有道实现翻译功能python 爬虫如何实现百度翻译python 实现批量图片识别并翻译python用tkinter实现一个gui的翻译工具python调用有道智云API实现文件批量翻译python开发一款翻译工具python 调用Google翻译接口的方法