I believe that you need to fix 2 things: 1. Add a `__init__.py` file in the job folder so as to be recognized as a module by itself (which enables it's ability to import other modules in it) 2. Do not name your "root" folder '.' but give it a name (ex root_folder). Then call the module as: `from root_folder.modules.print_module import do_stuff` Good luck :)