Fluffy birbs are cool @fluffy@witches.town
Suivre

@Arr0w_root With using pickle, I just write
p = pickle.Pickler(file)
p.dump(obj)
And the object is saved, without having to consider how it is implemented, and loading it just reproduces the original object. This is great for POO !