"""The pickle scraper reads a pickled file saved by the pickle outputter.""" import pickle def scrape(source): """Load the given pickle file into an object.""" with open(source, "rb") as in_file: return pickle.load(in_file)