X-Git-Url: https://plomlompom.com/repos/?p=plomlombot-irc.git;a=blobdiff_plain;f=plomlombot.py;h=6f6d33994255504e2ac4903cbe254d623db5fbdc;hp=ed0279279076217fb192ce3f49a76c570d90c111;hb=93ee629ccea3331cda8ed6f0b7072381c92c626c;hpb=5ef37de70327806a7c95b8c64f974a17c450f2d7 diff --git a/plomlombot.py b/plomlombot.py index ed02792..6f6d339 100755 --- a/plomlombot.py +++ b/plomlombot.py @@ -162,7 +162,7 @@ def handle_command(command, argument, notice, target, session): notice("QUOTE #" + str(i + 1) + ": " + lines[i]) def markov(): - from random import choice + from random import choice, shuffle select_length = 2 selections = [] @@ -190,16 +190,24 @@ def handle_command(command, argument, notice, target, session): if not os.access(markovfeed_name, os.F_OK): notice("NOT ENOUGH TEXT TO MARKOV.") return + + # Lowercase incoming lines, ensure they end in a sentence end mark. file = open(markovfeed_name, "r") lines = file.readlines() file.close() tokens = [] + sentence_end_markers = ".!?)(" for line in lines: - line = line.replace("\n", "").lower() + line = line.lower().replace("\n", "") + if line[-1] not in sentence_end_markers: + line += "." tokens += line.split() if len(tokens) <= select_length: notice("NOT ENOUGH TEXT TO MARKOV.") return + + # Replace URLs with escape string for now, so that the Markov selector + # won't see them as different strings. Stash replaced URLs in urls. urls = [] url_escape = "\nURL" url_starts = ["http://", "https://", " 200: break @@ -236,12 +255,16 @@ def handle_command(command, argument, notice, target, session): for i in range(select_length - 1): snippet[i] = snippet[i + 1] snippet[select_length - 1] = new_end + + # Replace occurences of url escape string with random choice from urls. while True: index = msg.find(url_escape) if index < 0: break msg = msg.replace(url_escape, choice(urls), 1) - notice(msg + "malkovich.") + + # More meaningful ways to randomly end sentences. + notice(msg + malkovich + ".") def twt(): def try_open(mode): @@ -299,7 +322,7 @@ def handle_url(url, notice, show_url=False): return if mobile_twitter_hack(url): return - title = bs4.BeautifulSoup(r.text, "html.parser").title + title = bs4.BeautifulSoup(r.text, "html5lib").title if title: prefix = "PAGE TITLE: " if show_url: