requests.exceptions.Timeoutrequests.exceptions.Timeout
A request timed out while waiting for a response from the server.
NotImplementedErrorA method that should be implemented by a subclass has not been implemented yet.
An abstract method was called on a class that has not implemented it. This is used as a pattern for abstract base classes where subclasses must override certain methods.
Implement the missing method in your subclass. Check the base class documentation for required methods. Use abc.ABC and @abstractmethod for proper abstract classes that enforce implementation at class creation time.
requests.exceptions.TimeoutA request timed out while waiting for a response from the server.
UnicodeEncodeErrorA Unicode string could not be encoded to the target encoding.
StopAsyncIterationRaised by an async iterator's __anext__() method to signal that iteration is complete.
FloatingPointErrorA floating point operation failed. Rarely seen unless fpectl is enabled.
KeyboardInterruptThe user pressed Ctrl+C to interrupt the running program.
struct.errorAn error occurred while packing or unpacking binary data with the struct module.