How to Solve NameError: name 'Queue' is not defined -- queue

Solution: Import the 'Queue' module

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

from queue import Queue

 

For more information:
Python queue Queue