I have this but it\'s doing partial matching:
for il in ignore_list: if il.word in title or il.word in text: return True
How can I
You need to split your title and text strings into lists of words:
if il.word in title.split() or il.word in text.split():