Skip to content

Instantly share code, notes, and snippets.

@gbin
Last active October 4, 2015 22:13
Show Gist options
  • Save gbin/9820fbd72ee516f4ff8d to your computer and use it in GitHub Desktop.
Save gbin/9820fbd72ee516f4ff8d to your computer and use it in GitHub Desktop.
Errbot recipes: Minimal plugin
[Core]
Name = AsciiArt
Module = asciiart
[Documentation]
Description = Make what you say big !
[Python]
Version = 3
from errbot import BotPlugin, botcmd
class AsciiArt(BotPlugin):
@botcmd
def big(self, mess, args):
return args.upper()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment