Re: Retrieving a partial pickle

2009-07-17 Thread Paul Rubin
Zac Burns writes: > I have a large pickle file, which happens to be a list with lots of > objects in it. > What sort of things can I do without unpickling the whole object? If it's for some kind of data recovery of a busted file, you could code some awful hack to pull stuff out of the middle of t

Re: Retrieving a partial pickle

2009-07-17 Thread Gabriel Genellina
En Fri, 17 Jul 2009 21:43:21 -0300, Zac Burns escribió: I have a large pickle file, which happens to be a list with lots of objects in it. What sort of things can I do without unpickling the whole object? I would particularly like to retrieve one of the elements in the list without unpicking

Retrieving a partial pickle

2009-07-17 Thread Zac Burns
I have a large pickle file, which happens to be a list with lots of objects in it. What sort of things can I do without unpickling the whole object? I would particularly like to retrieve one of the elements in the list without unpicking the whole object. If the answer is not specific to lists th