Skip to content

install requests

pip install requests

py

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)
    print("输入的词为:%s" % result['translateResult'][0][0]['src'])
    print("翻译结果为:%s" % result['translateResult'][0][0]['tgt'])
    src_word = result['translateResult'][0][0]['src']
    eng = str(result['translateResult'][0][0]['tgt'])
    res = eng.replace(' ', '_').upper()
    print(res)
    print("{}(200005, \"{}\")".format(res, src_word))


def translation(word):
    print("本程序调用有道词典的API进行翻译,可达到以下效果:")
    print("外文-->中文")
    print("中文-->英文")
    list_trans = translate(word)
    get_reuslt(list_trans)


if __name__ == '__main__':
    translation('联盟公告过长')

文章来源于自己总结和网络转载,内容如有任何问题,请大佬斧正!联系我