How to Solve NameError: name 'foo' is not defined -- somemodule

Solution: Import the 'foo' module

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

from somemodule import foo

 

For more information:
Python somemodule foo