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

Solution: Import the 'url' module

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

from django import url

 

For more information:
Python django url