FileNotFoundErrorFileNotFoundError
The specified file or directory does not exist.
FutureWarningA warning about behavior that will change in a future version.
A feature's behavior will change in a future version. Unlike DeprecationWarning, the feature is not being removed but its behavior will be different. Libraries like pandas and numpy frequently emit these.
Read the warning message for details on the upcoming change. Update your code to explicitly use the new behavior. Pin library versions if you need the current behavior temporarily.
FileNotFoundErrorThe specified file or directory does not exist.
EOFErrorThe input() function or raw_input() hit end-of-file without reading any data.
InterruptedErrorA system call was interrupted by an incoming signal.
requests.exceptions.TimeoutA request timed out while waiting for a response from the server.
NotADirectoryErrorA directory operation was attempted on a path that is not a directory.
UnboundLocalErrorA local variable was referenced before it was assigned a value.