Skip to content

Instantly share code, notes, and snippets.

@knivey
Created January 24, 2015 18:31
Show Gist options
  • Save knivey/cda981717d8e85b26b52 to your computer and use it in GitHub Desktop.
Save knivey/cda981717d8e85b26b52 to your computer and use it in GitHub Desktop.
__module_name__ = "barf"
__module_version__ = "1.0"
__module_description__ = "Python module example"
import xchat, datetime
def cmd_age(word, wordl, ud):
woot = (datetime.datetime.today() - datetime.datetime(year=1970, month=1, day=12)).days / 365.24
xchat.command("MSG %s Age: %s" % (xchat.get_info("channel"), woot))
return xchat.EAT_ALL
xchat.hook_command("age", cmd_age, help="lol")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment