Skip to content Skip to sidebar Skip to footer

Importerror: No Module Name

I am using following piece of code in python: name_of_module = abc from name_of_module import * But I am getting following error: ImportError: No module named name_of_module.

Solution 1:

I am not sure if atets_timeset_database module exists. Even if it exists try importing it directly. Assigning it to other variable and using the variable in import may not work


Post a Comment for "Importerror: No Module Name "