SyntaxErrorSyntaxError
Python encountered invalid syntax that cannot be parsed.
django.core.exceptions.ImproperlyConfiguredDjango detected a misconfiguration in the project's settings.
A Django setting is missing, has an invalid value, or a required app/middleware is not properly configured. Common causes: missing DATABASES setting, incorrect INSTALLED_APPS, or missing environment variables.
Read the error message for the specific misconfiguration. Check settings.py for missing or incorrect values. Set required environment variables. Ensure all apps in INSTALLED_APPS are installed. Run python manage.py check.
SyntaxErrorPython encountered invalid syntax that cannot be parsed.
StopAsyncIterationRaised by an async iterator's __anext__() method to signal that iteration is complete.
TypeErrorAn operation or function was applied to an object of an inappropriate type.
ValueErrorA function received an argument of the right type but an inappropriate value.
IOErrorAn I/O operation failed. IOError is an alias for OSError in Python 3.
TypeError: unhashable typeA mutable object was used where a hashable (immutable) object is required, such as a dictionary key or set element.