15 lines
520 B
Python
15 lines
520 B
Python
from base import ModuleBase
|
|
import re, subprocess
|
|
|
|
class Module(ModuleBase):
|
|
def __init__(self, manager):
|
|
ModuleBase.__init__(self, manager)
|
|
|
|
def commands(self):
|
|
return [('!ddate', 'Das heutige Datum im einzigen relevaten Kalender-System.')]
|
|
|
|
def groupchat(self, room, message_from, message_body, reply):
|
|
if not re.match(r'!ddate(?:\W|\Z)', message_body):
|
|
return
|
|
|
|
reply(subprocess.Popen(['ddate'], stdout=subprocess.PIPE).communicate()[0].strip())
|