I've been adding modules to my library so I may call them for future use but when I write a new module and run that module the compiler does not recognize module unpackapp. For example, I call:
from unpackapp import UnpackApp
Compiler states: "ImportError: No module named unpackapp"
I'm saving to: Python27/Lib
Am I storing my custom modules in the right folder?
Python27/Libin your$PYTHONPATH?