- Googletrans - 파이썬을 위한 구글 번역 API
- Googletrans 기본 사용
- googletrans.Translator
- googletrans.models
- googletrans.LANGUAGES
- Python Tutorial
- NumPy Tutorial
- Matplotlib Tutorial
- PyQt5 Tutorial
- BeautifulSoup Tutorial
- xlrd/xlwt Tutorial
- Pillow Tutorial
- Googletrans Tutorial
- PyWin32 Tutorial
- PyAutoGUI Tutorial
- Pyperclip Tutorial
- TensorFlow Tutorial
- Tips and Examples
googletrans.models¶
googletrans.models
에는 Translated
와 Detected
두 개의 클래스가 있습니다.
Translated¶
Translated
는 번역이 이루어진 객체입니다.
아래와 같은 파라미터가 있습니다.
src : source 언어 (디폴트: auto)
dest : destination 언어 (디폴트: en)
origin : 번역이 이루어지기 전 문자열 (또는 리스트)
text : 번역이 이루어진 문자열 (또는 리스트)
pronunciation : 발음
Detected¶
Detected
는 감지한 언어를 나타내는 객체입니다.
아래와 같은 파라미터가 있습니다
lang : 감지된 언어
confidence : 감지 결과의 신뢰도 (0에서 1.0 사이의 값)
이전글/다음글
이전글 : googletrans.Translator
다음글 : googletrans.LANGUAGES