How to Solve NameError: name 'quote' is not defined -- urllib

Erorr: name 'quote' is not defined

NameError: name 'quote' is not defined

Solution: Import the 'quote' module

# Add the following line to the top of your code
from urllib.parse import quote

 

For more information:
urllib quote