show/hide this revision's text 3 edited tags
show/hide this revision's text 2 added 75 characters in body

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:

:test!~test@test.com PRIVMSG #channel :Hi!

becomes this:

{ "sender" : "test!~test@test.com", "target" : "#channel", "message" : "Hi!" }

And so on?

(Edit: I want to parse IRC messages in general, not just PRIVMSG's)

show/hide this revision's text 1

Python & parsing IRC messages

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:

:test!~test@test.com PRIVMSG #channel :Hi!

becomes this:

{ "sender" : "test!~test@test.com", "target" : "#channel", "message" : "Hi!" }

And so on?