New Module: nsfw

Somethings just aren't safe work work.
master
Casey Link 2011-07-15 14:32:32 -04:00
parent 433daf8341
commit d77fc7a8b0
1 changed files with 18 additions and 0 deletions

18
modules/nsfw.py Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/python2
"""
nsfw.py - some things just aren't safe for work, a phenny module
author: Casey Link <unnamedrambler@gmail.com
"""
def nsfw(phenny, input):
link = input.group(2)
if not link:
phenny.say(".nsfw <link> - for when a link isn't safe for work")
return
phenny.say("!!NSFW!! -> %s <- !!NSFW!!" % (link))
nsfw.rule = (['nsfw'], r'(.*)')
if __name__ == '__main__':
print __doc__.strip()