2016-12-16 00:29:59 -06:00

9 lines
242 B
Python

"""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)