Jump to content

Pickle (Python)

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Edward (talk | contribs) at 08:05, 11 February 2008 (add reference and external link). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Pickle is a standard Python module.[1] It can take almost any Python object and convert it to a byte representation. This process of conversion is called pickling. Reconstructing the object from the byte representation is called unpickling. Pickling and unpickling are therefore serialization and deserialization, respectively.

References