I am currently having difficulties import some functions which are located in a python file which is in the parent directory of the working directory of the main flask application script. Here's how the structure looks like
project_folder
- public
--app.py
-scripts.py
here's a replica code for app.py: 
def some_function():
    from scripts import func_one, func_two
    func_one()
    func_two()
    print('done')
if __name__ == "__main__":
    some_function()
scripts.py contain the function as such:
def func_one():
    print('function one successfully imported')
def func_two():
    print('function two successfully imported')
What is the pythonic way of importing those functions in my app.py?
 
     
     
    