I\'m building an app that gets incoming SMSs, then based on a keyword, it looks to see if that keyword is associated with any campaigns that it is running. The way I\'m doin
The simplest solution is to use the difflib package, which has a get_close_matches function for approximate string matching:
get_close_matches
import difflib difflib.get_close_matches(word, possibilities)