本文实例讲述了Python通过调用有道翻译api实现翻译功能。分享给大家供大家参考,具体如下:
通过调用有道翻译的api,实现中译英、其他语言译中文
Python代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# coding=utf-8 import urllib import urllib2 import json import time import hashlib class YouDaoFanyi: def __init__( self , appKey, appSecret): self .url = 'https://openapi.youdao.com/api/' self .headers = { "User-Agent" : "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.109 Safari/537.36" , } self .appKey = appKey # 应用id self .appSecret = appSecret # 应用密钥 self .langFrom = 'auto' # 翻译前文字语言,auto为自动检查 self .langTo = 'auto' # 翻译后文字语言,auto为自动检查 def getUrlEncodedData( self , queryText): ''' 将数据url编码 :param queryText: 待翻译的文字 :return: 返回url编码过的数据 ''' salt = str ( int ( round (time.time() * 1000 ))) # 产生随机数 ,其实固定值也可以,不如"2" sign_str = self .appKey + queryText + salt + self .appSecret sign = hashlib.md5(sign_str).hexdigest() payload = { 'q' : queryText, 'from' : self .langFrom, 'to' : self .langTo, 'appKey' : self .appKey, 'salt' : salt, 'sign' : sign } # 注意是get请求,不是请求 data = urllib.urlencode(payload) return data def parseHtml( self , html): ''' 解析页面,输出翻译结果 :param html: 翻译返回的页面内容 :return: None ''' data = json.loads(html) print '-' * 10 translationResult = data[ 'translation' ] if isinstance (translationResult, list ): translationResult = translationResult[ 0 ] print translationResult if "basic" in data: youdaoResult = "\n" .join(data[ 'basic' ][ 'explains' ]) print '有道词典结果' print youdaoResult print '-' * 10 def translate( self , queryText): data = self .getUrlEncodedData(queryText) # 获取url编码过的数据 target_url = self .url + '?' + data # 构造目标url request = urllib2.Request(target_url, headers = self .headers) # 构造请求 response = urllib2.urlopen(request) # 发送请求 self .parseHtml(response.read()) # 解析,显示翻译结果 if __name__ = = "__main__" : appKey = '应用id' # 应用id appSecret = '应用密钥' # 应用密钥 fanyi = YouDaoFanyi(appKey, appSecret) while True : queryText = raw_input ( "请输入你好翻译的文字[Q|quit退出]: " ).strip() if queryText in [ 'Q' , 'quit' ]: break fanyi.translate(queryText) |
关于有道翻译api的详细说明可参考其官网:http://ai.youdao.com/docs/api.html
希望本文所述对大家Python程序设计有所帮助。
原文链接:http://www.cnblogs.com/hupeng1234/p/7073682.html