AttributeErrorAttributeError
An object does not have the requested attribute or method.
asyncio.TimeoutErrorAn asyncio operation exceeded its timeout.
An operation wrapped with asyncio.wait_for() or asyncio.timeout() did not complete within the specified timeout period. The coroutine took too long to produce a result.
Increase the timeout value. Optimize the slow coroutine. Add proper cancellation handling in the timed-out coroutine. Use asyncio.shield() if you need to protect certain operations from cancellation.
await asyncio.wait_for(coro(), timeout=1.0) # asyncio.TimeoutErrorAttributeErrorAn object does not have the requested attribute or method.
concurrent.futures.TimeoutErrorA Future did not complete within the specified timeout period.
pickle.UnpicklingErrorThe pickle module could not deserialize the provided data.
ArithmeticErrorBase class for arithmetic errors including ZeroDivisionError, OverflowError, and FloatingPointError.
BrokenPipeErrorAn attempt was made to write to a pipe or socket whose reading end has been closed.
SyntaxErrorPython encountered invalid syntax that cannot be parsed.