python relative path load file code example
Example 1: python open file relative to module
import os
TEST_FILENAME = os.path.join(os.path.dirname(__file__), 'test.txt')
Example 2: relative path python
import sys,os
sys.path.append(os.path.realpath('..'))