Skip to content

Instantly share code, notes, and snippets.

@gbin
Created October 4, 2015 22:15
Show Gist options
  • Save gbin/6f4507cd7128406619e8 to your computer and use it in GitHub Desktop.
Save gbin/6f4507cd7128406619e8 to your computer and use it in GitHub Desktop.
Errbot recipes: Online help
from errbot import BotPlugin, botcmd
class AsciiArt(BotPlugin):
""" Ascii Art related commands. """
@botcmd
def big(self, mess, args):
""" Generates a big version of what you want to say."""
return args.upper()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment