import file in __init__.py code example
Example: import __init__.py
# use this for python script(s) in same folder where __init__.py is in
# it'll save typing up common imports for multiple python scripts
from . import *
# if want to be specific
from . import hello_world