poezio/plugins/shuffle.py

16 lines
399 B
Python
Raw Normal View History

"""
Shuffle the words in every message you send in a :ref:`muctab`
(may/should confuse the reader).
"""
from plugin import BasePlugin
from random import shuffle
class Plugin(BasePlugin):
def init(self):
self.api.add_event_handler('muc_say', self.shuffle)
def shuffle(self, msg, tab):
split = msg['body'].split()
shuffle(split)
msg['body'] = ' '.join(split)