Super simple interpretation of the fuzzy logic search seen in sublime text.
Credit goes to this Quora question/answer here
Core logic is a simple RegEx searching for matching combinations in the strings
matched = [string for string in ministries if re.search(".*?".join(query),string,flags=re.IGNORECASE)]