Mercurial > hg > Feedworm
view backend/couchdb/ListDateTimeField.py @ 211:1ac0b8e2feae
wrap the individual feed update with an exception handler so that a sinlge broken feed doesn't halt the entire update process
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Mon, 12 Nov 2012 08:10:40 +0100 |
parents | f0afcd1c5656 |
children | bb3c851b18b1 |
line wrap: on
line source
from couchdb.mapping import Field from datetime import datetime class ListDateTimeField(Field): def _to_python(self, value): if isinstance(value, list): return datetime(*value) return value def _to_json(self, value): if isinstance(value, datetime): return [ value.year, value.month, value.day, value.hour, value.minute, value.second ] return value