homebrew shelve module

Hi fellow coders!

While develloping Dynamica, we came accross the problem of saving data to disk. While that can be done only with simple text and file processing, it is much easier to use a module that do that for you (like the Pickle or cPickle module). But even these have limitations, which lead me to try the shelve module, included in the Python distro. Well, that brought more problems (huge increase in file size, aweful loading time), so I decided to build my own shelving modules.

If you are interested in testing it, or just want to know more about it, just mail me at [email protected]

Martin