view Preference.py @ 69:d20e99d46d78

grr, need to re-enable the actual updating of entries
author Dirk Olmes <dirk@xanthippe.ping.de>
date Tue, 10 Aug 2010 03:41:24 +0200
parents be990ac6e478
children
line wrap: on
line source


class Preference(object):
    @staticmethod
    def forKey(key, session):
        return session.query(Preference).filter(Preference.key == key).first()
    
    def __init__(self, key, value):
        self.key = key
        self.value = value
    
    def __repr__(self):
        return "<Preference %s = %s>" % (self.key, self.value)