FileNotFoundErrorFileNotFoundError
The specified file or directory does not exist.
GeneratorExitRaised when a generator's close() method is called, allowing cleanup.
A generator or coroutine's close() method was called, or the generator was garbage collected. This gives the generator a chance to run finally blocks and release resources.
Use try-finally in generators for cleanup. Do not yield new values in the GeneratorExit handler. If you need cleanup logic, place it in a finally block within the generator function.
FileNotFoundErrorThe specified file or directory does not exist.
IOErrorAn I/O operation failed. IOError is an alias for OSError in Python 3.
ImportErrorAn import statement failed to find or load the specified module or name.
NotADirectoryErrorA directory operation was attempted on a path that is not a directory.
requests.exceptions.TimeoutA request timed out while waiting for a response from the server.
AttributeErrorAn object does not have the requested attribute or method.