Python & parsing IRC messages - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T12:38:12Zhttp://stackoverflow.com/feeds/question/930700http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/930700/python-parsing-irc-messages2Python & parsing IRC messagestt2009-05-30T21:51:58Z2009-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#9307065Answer by Unknown for Python & parsing IRC messagesUnknown2009-05-30T21:58:04Z2009-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#9307671Answer by Nadia Alramli for Python & parsing IRC messagesNadia Alramli2009-05-30T22:26:11Z2009-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#9308061Answer by DasIch for Python & parsing IRC messagesDasIch2009-05-30T22:44:01Z2009-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#9312741Answer by Van Gale for Python & parsing IRC messagesVan Gale2009-05-31T04:37:44Z2009-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>