IsADirectoryErrorIsADirectoryError
A file operation was attempted on a path that is a directory.
ImportErrorAn import statement failed to find or load the specified module or name.
The module exists but the specific name (function, class) you tried to import from it does not. The name may be misspelled, may have been removed in a newer version, or may be in a different submodule.
Check the spelling of the imported name. Verify the name exists in the module with dir(module). Check the module's documentation for the correct import path. Update the package if the name was moved in a newer version.
from os import nonexistent # ImportErrorIsADirectoryErrorA file operation was attempted on a path that is a directory.
multiprocessing.AuthenticationErrorAuthentication failed when connecting to a multiprocessing server.
ModuleNotFoundErrorPython could not find the specified module to import.
OverflowErrorThe result of an arithmetic operation is too large to be represented.
sqlalchemy.exc.OperationalErrorA database operation failed due to a connection or database-level error.
IndexErrorA sequence index is out of the valid range for the given sequence.