[파이썬] 구글 번역 - googletrans

2020. 10. 28. 16:33응용

728x90

 

 

 

 

   Googletrans 는구글 번역 API(Google Translate API)를 구현한 파이썬 라이브러리입니다.

   (Googletrans 공식 문서)

from googletrans import Translator

translator = Translator()
tran = translator.translate("안녕하세요", src='auto', dest='zh-cn')
print(tran.text, tran.pronunciation)

 

 

무료이지만, 하루에 사용할 수 있는 횟수가 제한되어 있습니다.

The maximum character limit on a single text is 15k

 

 

 


▶ 사용할 수 있는 언어

import googletrans
googletrans.LANGUAGES

 

 

 

 

 

 

 

반응형