import re
file=r'''14:00:01 type1 "xyz" has no relationships... ಠ_ಠ
14:00:01 type2 "xyza" has no relationships... ಠ_ಠ
14:00:01 type2 "aaaa" has no relationships... ಠ_ಠ
14:00:01 type3 "asdg" has no relationships... ಠ_ಠ
14:00:01 type4 "dhj" has no relationships... ಠ_ಠ'''
matches = []
rx = re.compile(r'(\w+) "([^"]*)"')
for line in file.splitlines():
    m = rx.search(line)
    if m:
        matches.append(f'{m.group(1)} {m.group(2)}')
            
print(matches)