How to Solve NameError: name 'Request' is not defined -- scrapy
Solution: Import the 'Request' module
To Solve the error, add the following line to the top of your code.
from scrapy import Request
For more information:
Python scrapy Request
To Solve the error, add the following line to the top of your code.
from scrapy import Request
For more information:
Python scrapy Request