Created
October 4, 2015 22:07
-
-
Save gbin/4998901c1d5e10174f96 to your computer and use it in GitHub Desktop.
Errbot recipes: dependencies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from errbot import BotPlugin, botcmd | |
from pyfiglet import Figlet | |
class AsciiArt(BotPlugin): | |
@botcmd | |
def big(self, mess, args): | |
return "```\n" + Figlet(font='slant').renderText(args) + "\n```" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pyfiglet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment