Module spug.util.quickle

Quick versions of pickle functions that allow you to dump to and load from a pickle file using the filename instead of a file object.

Classes

Functions

dump(obj, name)

def dump(obj, name):

Dump obj to a file named name.

load(name)

def load(name):

Load and return the first object in file named name.