How to Solve NameError: name 'GeeksList' is not defined -- .views

Solution: Import the 'GeeksList' module

To Solve the error, add the following line to the top of your code.

from .views import GeeksList

 

For more information:
Python .views GeeksList