utils_3.py 117 B

123
  1. def pickle_dump(item, out_file):
  2. with open(out_file, "wb") as opened_file:
  3. pickle.dump(item, opened_file)