Re: How to Buffer Serialized Objects to Disk

2011-01-12 Thread Adam Tauno Williams
On Wed, 2011-01-12 at 17:29 -0500, Scott McCarty wrote: > Been digging ever since I posted this. I suspected that the response > might be use a database. I use shelve extensively; there are many use-cases where it makes sense. And there are many where a database makes sense. Basically, if I just

Re: How to Buffer Serialized Objects to Disk

2011-01-12 Thread Peter Otten
Scott McCarty wrote: > Been digging ever since I posted this. I suspected that the response might > be use a database. I am worried I am trying to reinvent the wheel. The > problem is I don't want any dependencies and I also don't need persistence > program runs. I don't think sqlite3 counts as

Re: How to Buffer Serialized Objects to Disk

2011-01-12 Thread Scott McCarty
Been digging ever since I posted this. I suspected that the response might be use a database. I am worried I am trying to reinvent the wheel. The problem is I don't want any dependencies and I also don't need persistence program runs. I kind of wanted to keep the use of petit very similar to cat, h

Re: How to Buffer Serialized Objects to Disk

2011-01-12 Thread Peter Otten
Scott McCarty wrote: > Sorry to ask this question. I have search the list archives and googled, > but I don't even know what words to find what I am looking for, I am just > looking for a little kick in the right direction. > > I have a Python based log analysis program called petit ( > http://cr

Re: How to Buffer Serialized Objects to Disk

2011-01-12 Thread Chris Rebert
On Wed, Jan 12, 2011 at 1:05 PM, Scott McCarty wrote: > Sorry to ask this question. I have search the list archives and googled, but > I don't even know what words to find what I am looking for, I am just > looking for a little kick in the right direction. > I have a Python based log analysis prog

Re: How to Buffer Serialized Objects to Disk

2011-01-12 Thread MRAB
On 12/01/2011 21:05, Scott McCarty wrote: Sorry to ask this question. I have search the list archives and googled, but I don't even know what words to find what I am looking for, I am just looking for a little kick in the right direction. I have a Python based log analysis program called petit (

How to Buffer Serialized Objects to Disk

2011-01-12 Thread Scott McCarty
Sorry to ask this question. I have search the list archives and googled, but I don't even know what words to find what I am looking for, I am just looking for a little kick in the right direction. I have a Python based log analysis program called petit ( http://crunchtools.com/petit). I am trying