| | |
- Pickler(...)
- Pickler(file, [binary]) -- Create a pickler
If the optional argument, binary, is provided and is true, then
pickles will be written in binary format, which is more space and
computationally efficient.
- Unpickler(...)
- Unpickler(file) -- Create an unpickler
- dump(...)
- dump(object, file, [binary]) --Write an object in pickle format to the given file
If the optional argument, binary, is provided and is true, then the
pickle will be written in binary format, which is more space and
computationally efficient.
- dumps(...)
- dumps(object, [binary]) --Return a string containing an object in pickle format
If the optional argument, binary, is provided and is true, then the
pickle will be written in binary format, which is more space and
computationally efficient.
- load(...)
- load(file) -- Load a pickle from the given file
- loads(...)
- loads(string) -- Load a pickle from the given string
|