import googletrans # pip install googletrans==4.0.0-rc1
translator = googletrans.Translator()
#번역할 단어
inStr = ' HTTPSConnectionPool(host=, port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError)))'
outStr = translator.translate(inStr, dest='ko',src='auto')
print(outStr.text)