Hello,
I'm using the API Workspace via Python, and sometimes I encounter the following error message:
"An error occurred while requesting URL(). ReadTimeout('timed out')"
I want to handle this error using except Exception
or except TimeoutError
, but it doesn't seem to be recognized as an error by Python. As a result, the API call continues to function when it should terminate the process.
Could you please help me resolve this issue?
Thank you,
Hugo