Skip to content

Instantly share code, notes, and snippets.

@gbin
Created October 4, 2015 22:07
Show Gist options
  • Save gbin/4998901c1d5e10174f96 to your computer and use it in GitHub Desktop.
Save gbin/4998901c1d5e10174f96 to your computer and use it in GitHub Desktop.
Errbot recipes: dependencies
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```"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment