728x90
https://github.com/ssut/py-googletrans
# pip install googletrans==4.0.0rc1
from googletrans import Translator
tran = Translator()
result = tran.translate('hello', dest='ko')
print(result.text)
아직 정식 버전이 아니라 그런지 bulk 기능은 오류 발생
tran = Translator()
strings = ['hello','world']
results = tran.translate(strings, dest='ko')
for result in results:
print(result.text)
bulk 대신 for 구문으로 여러개 번역하기
tran = Translator()
strings = ['hello','world']
for s in strings:
result = tran.translate(s, dest='ko')
print(result.text)
728x90
'Python' 카테고리의 다른 글
[python] pdf를 이미지로 변환 (0) | 2022.02.11 |
---|---|
[python] 컨플루언스에 파일 첨부하기 (0) | 2022.02.08 |
[python] pandas 차트 생성 (0) | 2021.12.24 |
파이썬 셀레늄 웹드라이버 자동 관리하기 (0) | 2021.08.26 |
파이썬 tkinter - 테이블 항목 선택시 값 가져오기 (0) | 2020.10.30 |