Skip to main content

Some extra sweets for marshmallow.

Project description

Some extra sweets for marshmallow.

version pipeline status coverage report python_version

Examples

Use annotations for schema description.

from jam import Schema

class Bar(Schema):
    baz: str

class Foo(Schema):
    bar: Bar

foo: Foo = Foo().load({"bar": {"baz": "quux"}})

assert foo.bar.baz == "quux"

When annotations not enough

class Foo(Schema):
    bar: str = fields.Email()

Mapping rules

Basic Types

annotation

marshmallow field

str

fields.String

float

fields.Float

bool

fields.Boolean

int

fields.Integer

uuid.UUID

fields.UUID

decimal.Decimal

fields.Decimal

dt.datetime

fields.DateTime

dt.time

fields.Time

dt.date

fields.Date

dt.timedelta

fields.TimeDelta

All fields will be required for make it optional use typing.Optional[X]

Many

annotation

marshmallow field

list

fields.Raw(many=True)

typing.List[float]

fields.List(fields.Float())

Nested

annotation

marshmallow field

NestedSchema

fields.Nested(NestedSchema, required=True)

typing.Optional[NestedSchema]

fields.Nested(NestedSchema, required=True)

typing.List[NestedSchema]

fields.Nested(NestedSchema, required=True, many=True)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

marshmallow-jam-1.2.0.tar.gz (5.1 kB view hashes)

Uploaded Source

Built Distribution

marshmallow_jam-1.2.0-py3-none-any.whl (5.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page