Skip to content
Snippets Groups Projects
Commit 7087eeac authored by Eric S. Raymond's avatar Eric S. Raymond
Browse files

Run loop is working.

parent 9c5846e7
No related branches found
No related tags found
No related merge requests found
......@@ -6,5 +6,30 @@ Takes JSON objects of the form {'channel':<channel-url>, 'message':<text>}
and relays to IRC channels.
"""
import os, sys, json, irclib
import os, sys, json, irclib, getopt
class Irker:
"Persistent IRC multiplexer."
def __init__(self):
self.botpool = {}
def logerr(self, errmsg):
"Log a processing error."
sys.stderr.write(errmsg)
def run(self, ifp):
"Accept JSON relay requests from specified stream."
while True:
inp = ifp.readline()
if not inp:
break
try:
request = json.loads(inp.strip())
except ValueError:
self.logerr("irker: can't recognize JSON on input.\n")
break
self.relay(request)
def relay(self, request):
print request
if __name__ == '__main__':
irker = Irker()
irker.run(sys.stdin)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment