In [1]:
pwd


/Users/mbp/Documents/my-project/python-snippets/notebook/dir_import_test

In [2]:
python3 dir/main_sys_path_append.py


-- mod1.func is called
-- dir_for_mod.mod2.func is called

In [3]:
cd dir

In [4]:
pwd


/Users/mbp/Documents/my-project/python-snippets/notebook/dir_import_test/dir

In [5]:
python3 main_sys_path_append.py


-- mod1.func is called
-- dir_for_mod.mod2.func is called

In [6]:
cd ../..

In [7]:
pwd


/Users/mbp/Documents/my-project/python-snippets/notebook

In [8]:
python3 dir_import_test/dir/main_sys_path_append.py


-- mod1.func is called
-- dir_for_mod.mod2.func is called