fulvia/modules/fortune.py
2020-01-08 09:35:32 -05:00

17 lines
367 B
Python
Executable File

#!/usr/bin/env python3
"""
Runs the command "fortune -a" and sends the output to channel.
"""
import subprocess
from module import commands
@commands("fortune", "fort")
def fortune(bot, trigger):
"""
print a random, hopefully interesting, adage
"""
res = subprocess.check_output(["fortune", "-a"])
res = res.decode("utf-8").replace("\t", " ")
bot.msg(res)