What is “httpcore._exceptions.ConnectTimeout: timed out” error supposed to mean? How would I fix it?

爷,独闯天下 提交于 2021-01-05 08:08:12

问题


Basically, I'm using google translate API to translate a few documents that need to be translated into as many languages as possible, phrase by phrase. It had worked previously without any hassle, but when I use it now I keep getting this error.

httpcore._exceptions.ConnectTimeout: timed out

the line in which this error is happening is:

word = Translator().translate(word_list[untrans_word], src=user_first_lang, dest=lang_to_translate_to)

This word variable is in a function that translates the word and processes such that it fits into a list properly. untrans_word is the untranslated word that needs to be translated. The rest of the program works fine. I know this as I've tried this before and it has worked smoothly. What could be the problem, and how do I fix it?

The documentation of Google Translate API python library.

来源:https://stackoverflow.com/questions/62870783/what-is-httpcore-exceptions-connecttimeout-timed-out-error-supposed-to-mean

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!