Re: [Tutor] Alternative for Shelve

2009-05-12 Thread Timo
Kent Johnson schreef: On Tue, May 12, 2009 at 4:00 AM, Timo wrote: Kent Johnson schreef: Try the pickle module. I went from Pickle to Shelve because I couldn't store my wanted list of dictionaries in Pickle. What was the problem? You should be able to create a dict whose

Re: [Tutor] Alternative for Shelve

2009-05-12 Thread Timo
Kent Johnson schreef: On Tue, May 12, 2009 at 3:59 AM, Timo wrote: Alan Gauld schreef: "Timo" wrote I have an issue with the Shelve module. It works great for my needs, the only problem is that a file made with Shelve isn't interchangable between different computers.

Re: [Tutor] Alternative for Shelve

2009-05-12 Thread Kent Johnson
On Tue, May 12, 2009 at 4:00 AM, Timo wrote: > Kent Johnson schreef: >> Try the pickle module. > > I went from Pickle to Shelve because I couldn't store my wanted list of > dictionaries in Pickle. What was the problem? You should be able to create a dict whose values are lists of dicts. This woul

Re: [Tutor] Alternative for Shelve

2009-05-12 Thread Kent Johnson
On Tue, May 12, 2009 at 3:59 AM, Timo wrote: > Alan Gauld schreef: >> >> "Timo" wrote >> >>> I have an issue with the Shelve module. It works great for my needs, the >>> only problem is that a file made with Shelve isn't interchangable between >>> different computers. >> >> I thought it would be.

Re: [Tutor] Alternative for Shelve

2009-05-12 Thread Timo
Kent Johnson schreef: On Mon, May 11, 2009 at 1:39 PM, Timo wrote: Hello all, I have an issue with the Shelve module. It works great for my needs, the only problem is that a file made with Shelve isn't interchangable between different computers. I want my data to be exchanged between users.

Re: [Tutor] Alternative for Shelve

2009-05-12 Thread Timo
Alan Gauld schreef: "Timo" wrote I have an issue with the Shelve module. It works great for my needs, the only problem is that a file made with Shelve isn't interchangable between different computers. I thought it would be. What kind of computers are you having issues with? And what kind of

Re: [Tutor] Alternative for Shelve

2009-05-11 Thread Kent Johnson
On Mon, May 11, 2009 at 1:39 PM, Timo wrote: > Hello all, > > I have an issue with the Shelve module. It works great for my needs, the > only problem is that a file made with Shelve isn't interchangable between > different computers. I want my data to be exchanged between users. > > Does someone h

Re: [Tutor] Alternative for Shelve

2009-05-11 Thread Alan Gauld
"Timo" wrote I have an issue with the Shelve module. It works great for my needs, the only problem is that a file made with Shelve isn't interchangable between different computers. I thought it would be. What kind of computers are you having issues with? And what kind of issues? Does someo

[Tutor] Alternative for Shelve

2009-05-11 Thread Timo
Hello all, I have an issue with the Shelve module. It works great for my needs, the only problem is that a file made with Shelve isn't interchangable between different computers. I want my data to be exchanged between users. Does someone have an alternative to Shelve? It must be able to conta