반응형
갑자기 Python 구글 번역 API googletrans 에서 오류가 나기 시작했습니다.
'NoneType' object has no attribute 'group'
구글 검색을 해보니 아래와 같이 googletrans 를 uninstall 한 후 재 설치 하라고 하네요
pip uninstall googletrans
pip install git+https://github.com/alainrouillon/py-googletrans@feature/enhance-use-of-direct-api
1
2
3
4
5
6
7
|
from googletrans import Translator
translator = Translator(service_urls=['translate.googleapis.com'])
print(translator.translate("hello", src="en", dest="ko").text)
|
cs |
hello 는 "여보세요" 라고 번역이 되었지만
긴 문장은 번역이 되지 않았습니다.
hello 도 번역이 안되고 그대로 hello 라고 출력이 되버리네요
동일 코드를 몇번 시도 해보면 번역이 되다 안되다 해서
당분간은 사용하지 말아야겠습니다.
다른 사용자들도 처음에만 되고 두번째부터는 안된다고 하네요..
이참에 네이버 API 로 변경해야겠습니다.
반응형
'Program > Language' 카테고리의 다른 글
[C#] 쿠팡파트너스 API 사용 예제 search (0) | 2020.12.29 |
---|---|
[Python] 네이버 번역 API 예제 (0) | 2020.12.03 |
[Python] 카카오 지도 API 예제 (0) | 2020.09.27 |
[Python] matplotlib 챠트 한글 폰트 예제 (0) | 2020.09.20 |
[Python] Google 번역 API 예제 (0) | 2020.08.08 |
댓글