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.
def load(name):
Load and return the first object in file named name.
Dump obj to a file named name.
dump(obj, name)
def dump(obj, name):