Results 3 comments of anomius

Would Pickle Work Like: ```python def save(self, filename): with open(filename, 'wb') as outp: # Overwrites any existing file. pickle.dump(self, outp, pickle.HIGHEST_PROTOCOL) def from_file(self,filename): with open(filename, 'rb') as inp: return pickle.load(inp)...

Hey @ryanhill1 , can I take care of this?

@ryanhill1 i would like to work on this