Skip to content

Instantly share code, notes, and snippets.

@Tak31337
Created April 19, 2013 22:53
Show Gist options
  • Save Tak31337/5423786 to your computer and use it in GitHub Desktop.
Save Tak31337/5423786 to your computer and use it in GitHub Desktop.
Karma IRC bot plugin example, just drop these into karma's CWD/plugins and he will load it :)
{
"name":"test",
"command":"python plugins/test.py",
"description":"test plugin",
"trigger":"~test"
}
#!/usr/bin/env python
import sys
for arg in sys.argv:
if arg != 'plugins/test.py':
print(arg)
print("Hello there.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment