2006-05-09 13:46:02 +02:00
|
|
|
TrustedPickle is a Python module that can save most any arbitrary Python object
|
|
|
|
in a signed pickle file. There are two big differences between this module and
|
2016-05-19 12:53:05 +02:00
|
|
|
the standard pickle module. First, TrustedPickle can pickle a module, but the
|
|
|
|
standard pickle module cannot. Second, TrustedPickle includes a signature that
|
2006-05-09 13:46:02 +02:00
|
|
|
can verify the data's origin before the data is unpickled.
|
|
|
|
|
|
|
|
WWW: http://trustedpickle.sourceforge.net/index.html
|