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