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