yaml for persistence

Paul webjogger at gmail.com
Mon Mar 2 21:19:29 EST 2009


class User(object):
    def __init__(self, uid):
       self.uid = uid
       self.__dict__.update(yaml.load(str('uid')+'.yaml'))

    def save(self):
        f=open(str(self.uid)+'.yaml')
        yaml.dump(self.__dict__, f)



is there a better way to persist using Yaml

Paul
http://bidegg.com



More information about the Python-list mailing list