This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def bday_wish(message): | |
""" Analyze message to ascertain if it is a birthday wish | |
Params: | |
meassage: The message received from FB friend | |
""" | |
keywords = ["birthday", "birth", "happy", "bday", "hpy", "hbd", "hb", "happi", "best", "memorable", "awesome", "fantastic", "super", "bappy", "hirthday", "returns", "many", "bless", "god", "belated"] | |
expansion = {"hbd":["happy", "birthday"], "hb":["happy", "birthday"]} |
NewerOlder