flask-restx
flask-restx copied to clipboard
format date (custom format)
Format datetime with custom format, like:
model = api.model('Todo',
{
'id': fields.Integer(readonly = True),
'name': fields.String('Buy milk'),
'created_at': fields.DateTime(dt_custom_format = '%Y-%m-%dT%T.%fZ', readonly = True)
}
)