Re: Logging contents of IRC channel

2009-09-03 Thread devaru
On Sep 1, 9:56 am, alex23 wuwe...@gmail.com wrote:
 On Sep 1, 3:23 am, devaru ajoys...@gmail.com wrote:

  I am new to Python. I want to log the activities in an IRC channel.
  Any pointers regarding this would be of great help.

 It would help us if you could explain why the answers weren't suitable
 that you were given when you first[1] asked this question...

 [1]:http://groups.google.com/group/comp.lang.python/browse_frm/thread/448...


_
@Paul Rubin: This is small experimental project and I assure you that
i will not invade anyone's privacy.

@alex23: My bad, I didn't check the solutions that were provided in
the earlier thread (http://groups.google.com/group/comp.lang.python/
browse_frm/thread/448c0b476047f898).
I'll be trying out the solutions and let this community know.

Right now I'm using irclib.py.
@Jonathan Gardner: I would be connecting to an IRC channel through a
bot.
Storing data would not be problem. I'll either store it in a file or
in database.

Thanks everyone for the reply :-).
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Logging contents of IRC channel

2009-09-01 Thread Dan Upton
http://www.irchelp.org/irchelp/rfc/rfc.html describes (more or less) the
protocol.  It's actually pretty easy to write something which can connect
and monitor one or more channels on a server--that's how I learned network
programming in Java many moons ago.  I'd say look at the RFC and start off
logging all of your sent and received messages to the console, so if it
hangs you can see what message you've gotten and look up how to respond to
it.

-dan

On Mon, Aug 31, 2009 at 11:56 AM, Jonathan Gardner 
jgard...@jonathangardner.net wrote:

 On Aug 31, 10:23 am, devaru ajoys...@gmail.com wrote:
  I am new to Python. I want to log the activities in an IRC channel.
  Any pointers regarding this would be of great help.

 How are you going to plug into the chat server to obtain the data?

 How will you store the data?

 The in between parts are really easy.
 --
 http://mail.python.org/mailman/listinfo/python-list

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Logging contents of IRC channel

2009-08-31 Thread Paul Rubin
devaru ajoys...@gmail.com writes:
 I am new to Python. I want to log the activities in an IRC channel.
 Any pointers regarding this would be of great help.

http://science.slashdot.org/science/04/04/13/1356216.shtml
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Logging contents of IRC channel

2009-08-31 Thread Jonathan Gardner
On Aug 31, 10:23 am, devaru ajoys...@gmail.com wrote:
 I am new to Python. I want to log the activities in an IRC channel.
 Any pointers regarding this would be of great help.

How are you going to plug into the chat server to obtain the data?

How will you store the data?

The in between parts are really easy.
-- 
http://mail.python.org/mailman/listinfo/python-list