Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 457 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 457 Bytes

HotFuzz

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)]