Mercurial > hg > Feedworm
view backend/couchdb/ListDateTimeField.py @ 241:e0e7459556bc
use Qt to open the selected article in the system browser
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Tue, 28 Apr 2015 02:50:57 +0200 |
parents | e34c53a3e407 |
children |
line wrap: on
line source
# -*- coding: utf-8 -*- 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