1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
Cerealizer
%%%%%%%%%%
Cerealizer is a secure pickle-like module for Python 2 and 3.
It support basic types (int, string, unicode, tuple, list, dict,
set,...), old and new-style classes (you need to register the class
for security), object cycles, and it can be extended to support
C-defined type.
Cerealizer is available under the Python licence.
Requirements
============
- Python >= 2.4 (http://www.python.org)
Installation
============
Do in a console::
python ./setup.py build
and then as root::
python ./setup.py install
Documentation
=============
Use PyDoc.
Contact and links
=================
Jiba -- Jean-Baptiste LAMY -- <jibalamy *@* free *.* fr>
Cerealizer website : http://www.lesfleursdunormal.fr/static/informatique/cerealizer/index_en.html
Cerealizer on BitBucket (development repository): https://bitbucket.org/jibalamy/cerealizer
|