6 lines
112 B
Python
6 lines
112 B
Python
|
import pickle
|
||
|
|
||
|
def scrape (source):
|
||
|
with open(source, "rb") as in_file:
|
||
|
return pickle.load(in_file)
|