You are here: Home ‣ Dive Into Python 3 ‣
Difficulty level: ♦♦♦♦♢
❝ FIXME ❞
— FIXME
FIXME
⁂
☞Many articles about the
picklemodule make references tocPickle. In Python 2, there were two implementations of thepicklemodule, one written in pure Python and another written in C (but still callable from Python). In Python 3, these two modules have been consolidated, so you should always justimport pickle. You may find these articles useful, but you should ignore the now-obsolete information aboutcPickle.
pickle
pickle and cPickle — Python object serialization
json — JavaScript Object Notation Serializer
© 2001–9 Mark Pilgrim