Re: Writing Log CSV (Efficiently)

2007-04-16 Thread Tim Golden
Robert Rawlins - Think Blue wrote: > Thanks for that Tim, > > I could use a little more help with this CSV stuff this afternoon and I > can't get it to write the output I want for the life of me. I'm trying to > write a method for my logging class that receives a string as an argument, > and then

RE: Writing Log CSV (Efficiently)

2007-04-16 Thread Robert Rawlins - Think Blue
[mailto:[EMAIL PROTECTED] On Behalf Of Tim Golden Sent: 16 April 2007 15:28 Cc: python-list@python.org Subject: Re: Writing Log CSV (Efficiently) Robert Rawlins - Think Blue wrote: > The log at its highest rate of write may be looking at an operation a > second I think I can probably type

Re: Writing Log CSV (Efficiently)

2007-04-16 Thread Tim Golden
Robert Rawlins - Think Blue wrote: > The log at its highest rate of write may be looking at an operation a > second I think I can probably type stuff in faster than that if I try :) You probably don't have a performance issue there. , I've not got much experience with this kind of thing so I'm n

Re: Writing Log CSV (Efficiently)

2007-04-16 Thread Dave Borne
On 4/16/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Dave> Python has built in logging support. It's pretty flexible as far > Dave> as formatting output. I can get a bit complicated to set up, but > Dave> it will handle traffic well. > > Really? I've found it to be a dog in hea

RE: Writing Log CSV (Efficiently)

2007-04-16 Thread Robert Rawlins - Think Blue
't likely to be a steady flow of traffic, they'll come in big fat lumps every now and then. Thanks, Rob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 16 April 2007 15:12 To: Dave Borne Cc: Robert Rawlins - Think Blue; python-list@python.org Subject: Re

Re: Writing Log CSV (Efficiently)

2007-04-16 Thread skip
Dave> Python has built in logging support. It's pretty flexible as far Dave> as formatting output. I can get a bit complicated to set up, but Dave> it will handle traffic well. Really? I've found it to be a dog in heavy logging situations. Skip -- http://mail.python.org/mailman/lis

Re: Writing Log CSV (Efficiently)

2007-04-16 Thread skip
Rob> I'm looking to write a Log file which will be CSV based, and there Rob> is a good possibility that it'll get quite busy once its up and Rob> running, so I'm looking for the most efficient way to achieve Rob> it. In addition to Tim's advice, if you're worried about possible lo

Re: Writing Log CSV (Efficiently)

2007-04-16 Thread Dave Borne
On 4/16/07, Robert Rawlins - Think Blue <[EMAIL PROTECTED]> wrote: > I'm looking to write a Log file which will be CSV based, and there is a good > possibility that it'll get quite busy once its up and running, so I'm > looking for the most efficient way to achieve it. Whilst I'm sure i could do >

Re: Writing Log CSV (Efficiently)

2007-04-16 Thread Tim Golden
Robert Rawlins - Think Blue wrote: > I'm looking to write a Log file which will be CSV based, and there is a good > possibility that it'll get quite busy once its up and running, so I'm > looking for the most efficient way to achieve it. [... snip ...] > myfile = open("Logs/Applica

Writing Log CSV (Efficiently)

2007-04-16 Thread Robert Rawlins - Think Blue
Hello Guys, I'm looking to write a Log file which will be CSV based, and there is a good possibility that it'll get quite busy once its up and running, so I'm looking for the most efficient way to achieve it. Whilst I'm sure i could do something like this. myfile = open("Logs/