我是靠谱客的博主 甜美草莓,最近开发中收集的这篇文章主要介绍有道词典Python模拟翻译,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

import urllib.request
import urllib.parse
import json

content = input("请输入要翻译的内容:")
head = {}
head['User-Agent'] = 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0'
url = 'http://fanyi.youdao.com/translate?smartresult=dict&smartresult=rule&smartresult=ugc&sessionFrom=null'

#data为一字典,有以下两种表示方法
'''
data = {}
data['type'] = "AUTO"
data['i'] = content
data['doctype'] = "json"
data['xmlVersion'] = "1.8"
data['keyfrom'] = "fanyi.web"
data['ue'] = "UTF-8"
data['action'] = "FY_BY_ENTER"
data['typoResult'] = "true"
'''
data = { 'type' :"AUTO",
                'i' : content,
                'doctype' :"json",
                'xmlVersion' :"1.8",
                'keyfrom' :"fanyi.web",
                'ue': "UTF-8",
                'action' :"FY_BY_ENTER",
                'typoResult': "true"}

data = urllib.parse.urlencode(data).encode('utf-8')
req = urllib.request.Request(url,data,head)
response = urllib.request.urlopen(req)

html = response.read().decode('utf-8')

target = json.loads(html)

print("翻译结果是:%s"%(target['translateResult'][0][0]['tgt']))


最后

以上就是甜美草莓为你收集整理的有道词典Python模拟翻译的全部内容,希望文章能够帮你解决有道词典Python模拟翻译所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部