From 11444256143955fec9ec5d0dcded4bef45d1e080 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 25 Aug 2012 06:32:26 -0400 Subject: [PATCH 1/1] Project start. --- irker.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 irker.py diff --git a/irker.py b/irker.py new file mode 100755 index 0000000..7749e94 --- /dev/null +++ b/irker.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python +""" +irker - a simple IRC multiplexer daemon + +Takes JSON objects of the form {'channel':, 'message':} +and relays to IRC channels. + +""" +import os, sys, json, irclib + -- 2.26.2