in codes/data_processing.py [0:0]
def txt_Reader(path): ## .txt file reader ## f = open(path, encoding = "utf-8") E = f.read() E = E.split('\n') for i in range (len(E)): E[i] = E[i].split()[0] return E