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