Currently I have the following directory
my_epic_module
-> .gitignore
-> my_epic_module.py
main.py
When I try to import my_epic_module.py from main.py I do the following
# the following does not work
import my_epic_module
my_epic_module.bar("foo")
# the following works
from my_epic_module import my_epic_module
my_epic_module.bar("foo")
How do I make it so that I can just import it "normally" like the top first example? Do I need to add an __init__.py? If so what do I need to put into it?