Python & parsing IRC messages - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:38:12Z http://stackoverflow.com/feeds/question/930700 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/930700/python-parsing-irc-messages 2 Python & parsing IRC messages tt 2009-05-30T21:51:58Z 2009-10-18T16:00:07Z <p>What's the best way to parse messages received from an IRC server with Python according to the RFC? I simply want some kind of list/whatever, for example:</p> <pre><code>:test!~test@test.com PRIVMSG #channel :Hi! </code></pre> <p>becomes this:</p> <pre><code>{ "sender" : "test!~test@test.com", "target" : "#channel", "message" : "Hi!" } </code></pre> <p>And so on?</p> <p>(Edit: I want to parse IRC messages in <strong>general</strong>, not just PRIVMSG's)</p> http://stackoverflow.com/questions/930700/python-parsing-irc-messages/930706#930706 5 Answer by Unknown for Python & parsing IRC messages Unknown 2009-05-30T21:58:04Z 2009-05-30T23:41:58Z <p>Look at Twisted's implementation <a href="http://twistedmatrix.com/" rel="nofollow">http://twistedmatrix.com/</a></p> <p>Unfortunately I'm out of time, maybe someone else can paste it here for you.</p> <h3>Edit</h3> <p>Well I'm back, and strangely no one has pasted it yet so here it is:</p> <p><a href="http://twistedmatrix.com/trac/browser/trunk/twisted/words/protocols/irc.py#54" rel="nofollow">http://twistedmatrix.com/trac/browser/trunk/twisted/words/protocols/irc.py#54</a></p> <pre><code>def parsemsg(s): """Breaks a message from an IRC server into its prefix, command, and arguments. """ prefix = '' trailing = [] if not s: raise IRCBadMessage("Empty line.") if s[0] == ':': prefix, s = s[1:].split(' ', 1) if s.find(' :') != -1: s, trailing = s.split(' :', 1) args = s.split() args.append(trailing) else: args = s.split() command = args.pop(0) return prefix, command, args parsemsg(":test!~test@test.com PRIVMSG #channel :Hi!") # ('test!~test@test.com', 'PRIVMSG', ['#channel', 'Hi!']) </code></pre> <p>This function closely follows the EBNF described in the IRC RFC.</p> http://stackoverflow.com/questions/930700/python-parsing-irc-messages/930767#930767 1 Answer by Nadia Alramli for Python & parsing IRC messages Nadia Alramli 2009-05-30T22:26:11Z 2009-05-30T22:26:11Z <p>You can do it with a simple list comprehension if the format is always like this.</p> <pre><code>keys = ['sender', 'type', 'target', 'message'] s = ":test!~test@test.com PRIVMSG #channel :Hi!" dict((key, value.lstrip(':')) for key, value in zip(keys, s.split())) </code></pre> <p>Result:</p> <pre><code>{'message': 'Hi!', 'type': 'PRIVMSG', 'sender': 'test!~test@test.com', 'target': '#channel'} </code></pre> http://stackoverflow.com/questions/930700/python-parsing-irc-messages/930806#930806 1 Answer by DasIch for Python & parsing IRC messages DasIch 2009-05-30T22:44:01Z 2009-05-30T22:44:01Z <p>Do you just want to parse IRC Messages in general or do you want just parse PRIVMSGs? However I have a implementation for that.</p> <pre><code>def parse_message(s): prefix = '' trailing = '' if s.startswith(':'): prefix, s = s[1:].split(' ', 1) if ' :' in s: s, trailing = s.split(' :', 1) args = s.split() return prefix, args.pop(0), args, trailing </code></pre> http://stackoverflow.com/questions/930700/python-parsing-irc-messages/931274#931274 1 Answer by Van Gale for Python & parsing IRC messages Van Gale 2009-05-31T04:37:44Z 2009-05-31T04:37:44Z <p>If you want to keep to a low-level hacking I second the Twisted answer by Unknown, but first I think you should take a look at the very recently announced <strong><a href="http://zork.net/motd/nick/django/introducing-yardbird.html" rel="nofollow">Yardbird</a></strong> which is a nice request parsing layer on top of Twisted. It lets you use something similar to Django URL dispatching for handling IRC messages with a side benefit of having the Django ORM available for generating responses, etc.</p>