X-Git-Url: https://plomlompom.com/repos/?p=plomlombot-irc.git;a=blobdiff_plain;f=plomlombot.py;h=1be105cbdf51325b4817177cb34f29860c57ac1a;hp=b95bb42499f2f99f3c701b869d4ac84670efcc8b;hb=cdc6694ded39422fbe38ee7c5f31d01026b8792a;hpb=031eeac526e6aad183d35a929680148afbb4a94e diff --git a/plomlombot.py b/plomlombot.py index b95bb42..1be105c 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,17 +255,21 @@ 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): try: - twtfile = open(session.twtfile, "w") + twtfile = open(session.twtfile, mode) except (PermissionError, FileNotFoundError) as err: notice("CAN'T ACCESS OR CREATE TWT FILE: " + str(err)) return None @@ -293,6 +316,7 @@ def handle_url(url, notice, show_url=False): except (requests.exceptions.TooManyRedirects, requests.exceptions.ConnectionError, requests.exceptions.InvalidURL, + UnicodeError, requests.exceptions.InvalidSchema) as error: notice("TROUBLE FOLLOWING URL: " + str(error)) return