Mercurial > hg > Feedworm
view backend/sqlalchemy/Preference.py @ 223:f07cf25224a4
do not use python3 - the couchdb lib is not ready for it
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Thu, 22 May 2014 05:24:53 +0200 |
parents | 699d8f1cebd4 |
children |
line wrap: on
line source
# -*- coding: utf-8 -*- 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)