requests.exceptions.Timeoutrequests.exceptions.Timeout
A request timed out while waiting for a response from the server.
NotADirectoryErrorA directory operation was attempted on a path that is not a directory.
You tried to perform a directory operation (listing, changing to) on a path that is a file rather than a directory. For example, os.listdir('/some/file.txt').
Verify the path is a directory with os.path.isdir(). Fix the path to point to the correct directory. If a file exists where a directory is expected, remove it or use a different path.
requests.exceptions.TimeoutA request timed out while waiting for a response from the server.
StopIterationRaised by the next() function to indicate that there are no further items in an iterator.
ConnectionRefusedErrorThe connection was refused because no server is listening on the target address.
TypeError: object is not subscriptableBracket notation ([]) was used on an object that does not support indexing.
IOErrorAn I/O operation failed. IOError is an alias for OSError in Python 3.
Model.DoesNotExistA Django ORM query with .get() did not find a matching record.