Pretty new to python. Running linux os
I have a folder folder1 with my main program "main.py"
I have a folder folder2 with my module "module.py"
The module has 2 functions in it function1 and function2
Both folders are in the same folder.
How do I import the module.py from folder2 into my main.py in folder1? or do I have to pick out the individual function from module.py somehow?
preferably just import both functions at once