How to Solve NameError: name 'Session' is not defined -- django

Erorr: name 'Session' is not defined

NameError: name 'Session' is not defined

Solution: Import the 'Session' module

# Add the following line to the top of your code
from django.contrib.sessions.models import Session

 

For more information:
django Session