15 lines
506 B
Python
15 lines
506 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, nick, text, handler):
|
|
if not re.match(r'!ddate(?:\W|\Z)', text):
|
|
return
|
|
|
|
handler.reply(subprocess.Popen(['ddate'], stdout=subprocess.PIPE).communicate()[0].strip())
|