view Preference.py @ 96:397688da3d28

when selecting a feed entry, mark the entire row as selected
author Dirk Olmes <dirk@xanthippe.ping.de>
date Tue, 28 Dec 2010 03:44:51 +0100
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)