資源簡介
python 中英文翻譯api request(百度)
代碼片段和文件信息
#/usr/bin/env?python
#coding=utf8
?
import?httplib
import?md5
import?urllib
import?random
appid?=?‘‘?#你的appid
secretKey?=?‘‘?#你的密鑰
?
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=‘+app
- 上一篇:《Python測試驅動開發》
- 下一篇:python udp聊天
評論
共有 條評論