h/plugins/choose.py

18 lines
353 B
Python
Raw Normal View History

import re
import random
from util import hook
2010-03-01 02:32:41 +00:00
@hook.command
def choose(inp):
".choose <choice1>, <choice2>, ... <choicen> -- makes a decision"
c = re.findall(r'([^,]+)', inp)
if len(c) == 1:
c = re.findall(r'(\S+)', inp)
if len(c) == 1:
return 'the decision is up to you'
return random.choice(c).strip()