30 lines
619 B
Python
30 lines
619 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import absolute_import
|
||
|
|
||
|
from marshmallow.schema import Schema, SchemaOpts
|
||
|
|
||
|
from . import fields
|
||
|
from marshmallow.decorators import (
|
||
|
pre_dump, post_dump, pre_load, post_load, validates, validates_schema
|
||
|
)
|
||
|
from marshmallow.utils import pprint, missing
|
||
|
from marshmallow.exceptions import ValidationError
|
||
|
|
||
|
__version__ = '3.0.0b8'
|
||
|
__author__ = 'Steven Loria'
|
||
|
|
||
|
__all__ = [
|
||
|
'Schema',
|
||
|
'SchemaOpts',
|
||
|
'fields',
|
||
|
'validates',
|
||
|
'validates_schema',
|
||
|
'pre_dump',
|
||
|
'post_dump',
|
||
|
'pre_load',
|
||
|
'post_load',
|
||
|
'pprint',
|
||
|
'ValidationError',
|
||
|
'missing',
|
||
|
]
|