本文實例講述了python自動翻譯實現方法。分享給大家供大家參考,具體如下:
以前學過python的基礎,一般也沒用過。后來有一個參數表需要中英文。想了一下,還是用python做吧。調用的百度翻譯接口,經歷了亂碼、模塊不全等問題。一般google,一邊做的。分享一下。
#encoding=utf-8## eagle_91@sina.com## created 2014-07-22import urllibimport urllib2import MySQLdbimport jsonimport gcimport timeurl = 'http://openapi.baidu.com/public/2.0/bmt/translate'_sleepTime = 0.5_limit = 1000## 鏈接mysqlconn = MySQLdb.connect(host='localhost',user='root',passwd='',charset='utf8')curs = conn.cursor()conn.select_db('test')## 搜索要操作的表count=curs.execute("""SELECT * FROM sb_parameters WHERE ISNULL(en_name) ORDER BY id ASC""")## print curs.fetchall()## print countresults = curs.fetchmany(_limit)for r in results: gc.collect() chin = unicode(r[3]).encode('utf-8') ## print chin values = {'client_id':'PWrGllvVAIFcD0sYqaipwkAV','q':chin,'from':'zh','to':'en'} data = urllib.urlencode(values) req = urllib2.Request(url, data) response = urllib2.urlopen(req) the_page = response.read() returnData = json.loads(the_page) ## print returnData if returnData.has_key("error_code"): continue; inputData = returnData["trans_result"][0]["dst"] try: sql = "UPDATE `sb_parameters` SET `en_name`='%s' WHERE `id` = %d" % (MySQLdb.escape_string(unicode(inputData).encode('utf-8')),r[0]) print sql curs.execute(sql) conn.commit() time.sleep(_sleepTime) except EOFError: sql = "UPDATE `sb_parameters` SET `en_name`='%s' WHERE `id` = %d" % ('',r[0]) print sql curs.execute(sql) conn.commit() continueconn.commit()## 關閉鏈接curs.close()## 關閉數據庫conn.close()更多關于Python相關內容感興趣的讀者可查看本站專題:《Python圖片操作技巧總結》、《Python數據結構與算法教程》、《Python Socket編程技巧總結》、《Python函數使用技巧總結》、《Python字符串操作技巧匯總》、《Python入門與進階經典教程》及《Python文件與目錄操作技巧匯總》
希望本文所述對大家Python程序設計有所幫助。
新聞熱點
疑難解答
圖片精選