Mercurial > hg > Feedworm
view backend/couchdb/ListDateTimeField.py @ 254:156edbd0733a pyqt5
the pyqt5 branch was merged into the default branch
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Fri, 10 Nov 2017 01:45:55 +0100 |
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