1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
| import io import random import sys
from shakespearelang.shakespeare import Shakespeare print("You're nothing like a summers day.") print("enter your play > ")
blacklist = [ "Heaven", "King", "Lord", "angel", "flower", "happiness", "joy", "plum", "summer's", "day", "hero", "rose", "kingdom", "pony", "animal", "aunt", "brother", "cat", "chihuahua", "cousin", "cow", "daughter", "door", "face", "father", "fellow", "granddaughter", "grandfather", "grandmother", "grandson", "hair", "hamster", "horse", "lamp", "lantern", "mistletoe", "moon", "morning", "mother", "nephew", "niece", "nose", "purse", "road", "roman", "sister", "sky", "son", "squirrel", "stone", "wall", "thing", "town", "tree", "uncle", "wind", "Hell", "Microsoft", "bastard", "beggar", "blister", "codpiece", "coward", "curse", "death", "devil", "draught", "famine", "flirt-gill", "goat", "hate", "hog", "hound", "leech", "lie", "pig", "plague", "starvation", "toad", "war", "wolf" ]
blacklist += ["open", "listen"]
blacklist += ["am ", "are ", "art ", "be ", "is "]
solution = "" for line in sys.stdin: solution += line.lower() if line.strip().lower() == "[exeunt]": break
print("play received") disallowed = False for word in blacklist: if word.lower() in solution: print(f"You used an illegal word: {word}") disallowed = True break
if not solution.isascii(): print("there were non-ascii characters in your solution.") disallowed = True
if (not disallowed): old_stdout = sys.stdout old_stdin = sys.stdin sys.stdout = io.StringIO() sys.stdin = io.StringIO() try: interpreter = Shakespeare(play=solution, input_style='basic', output_style='basic') interpreter.run() payload = sys.stdout.getvalue() finally: sys.stdout = old_stdout sys.stdin = old_stdin eval(payload) else: with open("insults.txt", "r") as file: insults = file.readlines() random_insult = random.choice(insults).strip() print(random_insult)
|