Re: [ANN] Cerealizer 0.4 -- a secure Pickle-like module

2006-06-11 Thread Aahz
In article [EMAIL PROTECTED], Jiba python-list@python.org wrote: Cerealizer is now available under the Python license (and was previously GPL'ed). Nothing except for Python itself should be released under the Python license. See http://wiki.python.org/moin/PythonSoftwareFoundationLicenseFaq --

[ANN] Cerealizer 0.4 -- a secure Pickle-like module

2006-06-10 Thread Jiba
Cerealizer 0.4 is available: http://download.gna.org/soya/Cerealizer-0.4.tar.bz2 WHAT IS CEREALIZER ? Cerealizer is a secure Pickle-like module for Python. It is very similar to (C)Pickle, and understands load(s), dump(s), __getstate__, __setstate__, __getinitargs__,__getnewargs__

Secure Pickle-like module

2006-05-25 Thread jiba
Hi all, I'm currently working on a secure Pickle-like module, Cerealizer, http://home.gna.org/oomadness/en/cerealizer/index.html Cerealizer has a pickle-like interface (load, dump, __getstate__, __setstate__,...), however it requires to register the class you want to cerealize, by calling

Re: Secure Pickle-like module

2006-05-25 Thread Jean-Paul Calderone
On 25 May 2006 13:22:21 -0700, [EMAIL PROTECTED] wrote: Hi all, I'm currently working on a secure Pickle-like module, Cerealizer, http://home.gna.org/oomadness/en/cerealizer/index.html Cerealizer has a pickle-like interface (load, dump, __getstate__, __setstate__,...), however it requires

Re: Secure Pickle-like module

2006-05-25 Thread jiba
There are a couple factual inaccuracies on the site that I'd like to clear up first: Trivial benchmarks put cerealizer and banana/jelly on the same level as far as performance goes: $ python -m timeit -s 'from cereal import dumps; L = [Hello, , (w, o, r, l, d, .)]' 'dumps(L)' 1