No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

picklefile.py 619B

12345678910111213141516171819
  1. #-*- coding: utf-8 -*-
  2. import pickle
  3. ## @brief Save a model in a file
  4. # @param model EditorialModel : the model to save
  5. # @param filename str|None : if None return the model as pickle bytes
  6. # @return None if filename is a string, else returns bytes representation of model
  7. def save(self, model, filename = None):
  8. with open(filename, 'w+') as ffd:
  9. pickle.dump(model, ffd)
  10. return filename
  11. ## @brief Load a model from a file
  12. # @param filename str : the filename to use to load the model
  13. def load(self, filename):
  14. with open(filename, 'r') as ffd:
  15. edmod = pickle.load(ffd)
  16. return edmod