a small tool for Wikipedia article quality inspection using ORES
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
349 B

6 years ago
import time
import random
import os
6 years ago
nextturn=['who is next','next','well done','keep going','almost there', 'bonus! bonus! you have another minute', 'what a great edit', "it's like i'm reading The New York Times", 'nice phrasing. next']
while True:
6 years ago
choice=random.choice(nextturn)
cmd="espeak '{}'".format(choice)
os.system(cmd)
time.sleep(60)