Say I have a folder Dir with several files Funs_1, Funs_2 each of which contain several functions with unique names. Structure is as such:
project
│   foo.py
└───Dir
       Funs_1 >> some_function_1
       Funs_2 >> some_function_2
How can I call some_function_1 and some_function_2 from the project file foo.py using Dir.Funs_1.some_function_1 or something of that nature?
 
    