首页 > 编程语言 > 详细

python 翻译,调用有道翻译

时间:2020-10-10 22:08:46      阅读:53      评论:0      收藏:0      [点我收藏+]
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 翻译,调用有道翻译

原文:https://www.cnblogs.com/3-wusen/p/13795087.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!