2016-11-27 01:58:47 -06:00

6 lines
129 B
Python

import pickle
def output (data, destination):
with open(destination, "wb") as out_file:
pickle.dump(data, out_file)