6 lines
112 B
Python
Raw Normal View History

import pickle
def scrape (source):
with open(source, "rb") as in_file:
return pickle.load(in_file)