django.core.exceptions.ImproperlyConfigureddjango.core.exceptions.ImproperlyConfigured
Django detected a misconfiguration in the project's settings.
StopAsyncIterationRaised by an async iterator's __anext__() method to signal that iteration is complete.
An async iterator has no more items. This is the async equivalent of StopIteration. Async for-loops handle this automatically, but manual __anext__() calls will see this exception.
Use async for loops which handle this automatically. If using manual __anext__(), wrap it in try-except StopAsyncIteration. Provide a sentinel value pattern for async generators.
django.core.exceptions.ImproperlyConfiguredDjango detected a misconfiguration in the project's settings.
IndexErrorA sequence index is out of the valid range for the given sequence.
FileNotFoundErrorThe specified file or directory does not exist.
ConnectionAbortedErrorThe connection was aborted by the local machine.
BufferErrorAn operation on a buffer object failed.
IOErrorAn I/O operation failed. IOError is an alias for OSError in Python 3.