I changed the delimiter from "!" to "." to avoid conflicts in the channels, so instead of !test, you would do .test as an example.
Also, chris1's urban dictionary (!wtf/!ud) has been ported. It doesn't give the upvote/downvote score from the urban dictionary website because I didn't find the info useful.
I will also be working on other ports and some originals as time goes on. Once I'm happy with the state and addons I'll host it on my server.
So this is a call for addons/plugins. If you want to code something small and useful, do it. I'll help you port it and make it something IRC can benefit from. Here is an example of the test.py addon.
# main() is what is executed. you can have any number of functions you want but main() is
# what will be executed, so keep what you want to send inside of main().
import time
def main(nick, comargs, chan, send):
# example on sending a simple string to the default channel the bot is on
print("[*] Testing simple default")
time.sleep(1)
send.put("Success!")