파이썬, googletrans 패키지를 이용한 번역
글. 수알치 오상문
1. 설치
py -m pip install --upgrade pip setuptools wheel
pip install googletrans (pip install googletrans==4.0.0-rc1)
2. 예제
from googletrans import Translator
translator = Translator()
result = translator.translate('안녕하세요?', dest='en')
print(result.text)
result = translator.translate('Hello?', dest='ko')
print(result.text)
result = translator.translate('Python “Virtual Environments” allow Python packages to be installed in an isolated location for a particular application, rather than being installed globally. If you are looking to safely install global command line tools, see Installing stand alone command line tools.', dest='ko')
print(result.text)
[실행결과]
hello?
안녕하세요?
Python "Virtual Environments"를 사용하면 전 세계적으로 설치되지 않고 특정 응용 프로그램의 분리 된 위치에 Python 패키지를 설치할 수 있습니다.글로벌 명령 줄 도구를 안전하게 설치하려면 독립형 명령 줄 도구 설치를 참조하십시오.
'Python 활용' 카테고리의 다른 글
파이썬 - asgi 버전(2, 3)에 따라 달라지는 uvicorn 호스팅 (0) | 2024.06.16 |
---|---|
Python, SQLAlchemy DB migration 툴 (1) | 2024.06.12 |
Python, Ubuntu, Tibero, ODBC (0) | 2024.05.09 |
파이썬, 테이블 생성 및 복사 예제 (SqlAlchemy) (0) | 2024.05.09 |
외래키(FOREIGN KEY) 관계 무시하고 삭제하기 (1) | 2024.01.23 |