百度辞書を使用して中国語を英語に翻訳します
reload(sys)
sys.setdefaultencoding('utf-8')
def tran(word):
url='http://dict.baidu.com/s? wd={0}&tn=dict'.format(word)
print url
req=urllib2.Request(url)
resp=urllib2.urlopen(req)
resphtml=resp.read( )
text = re.search(r'explain: "(.*)"',resphtml)
return text.group(1).replace('
',' ')
a=tran('word')#翻訳する単語
ab = open('resault.txt','w')
ab.write(a)
ab.close()