如何使用python快速翻译json文件
问题:
如何使用python快速翻译json文件
思路:
因为json格式类似python的dict类型,是否能通过翻译键值对的方法将字典key对应的value配合有道翻译api进行逐个翻译呢?
想法是有了,但是无从下手
希望大佬指点!
Code:
import requests
import json
def youDaoApi(words):
url = 'http://fanyi.youdao.com/translate?smartresult=dict&smartresult=rule&smartresult=ugc&sessionFrom=null'
# 传输的参数,其中 i 为需要翻译的内容
word = '\n'.join(words)
key = {
'i': words,
'from': 'en',
'to': 'zh-CHS',
'smartresult': 'dict',
'doctype': 'json',
'version': '2.1',
'keyfrom': 'fanyi.web',
'action': 'FY_BY_REALTlME'
}
headers = {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36'
}
# key 这个字典为发送给有道词典服务器的内容
response = requests.post(url, data=key, headers=headers)
# 判断服务器是否相应成功
if response.status_code == 200:
# 然后相应的结果
result = json.loads(response.text)
# print(result)
return [item[0]['tgt'] for item in result['translateResult']]
else:
print("有道词典调用失败")
# 相应失败就返回空
return None
推荐文章: