【无标题】python实现有道翻译

'''

import requests
import json


def translate(word=None):
    url = 'http://fanyi.youdao.com/translate'
    Form_Data = {'action': 'FY_BY_REALTIME', 'i': word, 'from': 'AUTO', 'to': 'AUTO', 'smartresult': 'dict',
                 'client': 'fanyideskweb', 'salt': '16076755295386', 'sign': '11b6494ac1254a69f4f55bf7b6511c3e',
                 'lts': '1607675529538', 'bv': '46dc72e3f78c8e58e69300149bb03d64', 'doctype': 'json', 'version': '2.1',
                 'keyfrom': 'fanyi.web', 'action': 'FY_BY_REALTlME'}

    response = requests.post(url, data=Form_Data)
    content = json.loads(response.text)
    return content['translateResult'][0][0]['tgt']


word = input('请输入要翻译的中文:')
print(translate(word))

上一篇:2FastAPI通过Header,Body,Form这三个库可以获取请求体请求体和表单数据


下一篇:7.27笔记(Redis 复制原理及特性)