Skip to content

Instantly share code, notes, and snippets.

@ethan-funny
Created June 18, 2016 03:49
Show Gist options
  • Save ethan-funny/bd1013e8755c1e54247615c7a26a8def to your computer and use it in GitHub Desktop.
Save ethan-funny/bd1013e8755c1e54247615c7a26a8def to your computer and use it in GitHub Desktop.
#/usr/bin/env python
#coding=utf8
import httplib
import md5
import urllib
import random
appid = '20151113000005349'
secretKey = 'osubCEzlGjzvw8qdQc41'
httpClient = None
myurl = '/api/trans/vip/translate'
q = 'apple'
fromLang = 'en'
toLang = 'zh'
salt = random.randint(32768, 65536)
sign = appid+q+str(salt)+secretKey
m1 = md5.new()
m1.update(sign)
sign = m1.hexdigest()
myurl = myurl+'?appid='+appid+'&q='+urllib.quote(q)+'&from='+fromLang+'&to='+toLang+'&salt='+str(salt)+'&sign='+sign
try:
httpClient = httplib.HTTPConnection('api.fanyi.baidu.com')
httpClient.request('GET', myurl)
#response是HTTPResponse对象
response = httpClient.getresponse()
print response.read()
except Exception, e:
print e
finally:
if httpClient:
httpClient.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment