blob: eaf8dab3d3712b3d195e824f3979ae6e717d7224 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from plugin import BasePlugin
import subprocess
class Plugin(BasePlugin):
def init(self):
self.api.add_event_handler('muc_say', self.figletize)
self.api.add_event_handler('conversation_say', self.figletize)
self.api.add_event_handler('private_say', self.figletize)
def figletize(self, msg, tab):
process = subprocess.Popen(['figlet', '--', msg['body']], stdout=subprocess.PIPE)
result = process.communicate()[0].decode('utf-8')
msg['body'] = result
|