I am working on a server, and I have a set of utilities that I want common to everything 'below' and 'beside' in the directory structure. It looks like this:
Server/
    server.py
    serverutils.py
    games/
        gamehandle.py
        __init__.py
I was wondering how I could import serverutils.py from gamehandle.py. Thanks in advance!
Edit:
I looked at the question here, and the answer I was looking for wasn't there. I solved my problem by placing an empty __init__.py file in the Server/ folder. 
 
     
    