gt py:谷歌翻译免费API 源码
gt-py 谷歌翻译免费API 用法 只需运行python tes.py from gt import GT tes = GT () print ( tes . t ( "selamat pagi" , "id" , "ja" )) 将使dict()输出 { 'translate' : 'おはようございます' , 'pronunciation' : 'Ohayōgozaimasu' , 'text' : 'selamat pagi' , 'pronunciation_text' : None , 'lang_from' : 'id' , 'lang_to' : 'ja' } 另一个例子 tes = GT () text = tes . text ( "good morning" , "en" , "ko" ) print ( text [ "translate" ]) 输出 좋은
用户评论