-
Notifications
You must be signed in to change notification settings - Fork 0
/
casea.py
78 lines (65 loc) · 1.63 KB
/
casea.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
from marshmallow import Schema, fields
class User:
def __init__(self, name, org=None):
self.name = name
self.org = org
class UserSchema(Schema):
name = fields.String()
org = fields.Nested('OrgSchema')
class Org:
def __init__(self, name):
self.name = name
class OrgSchema(Schema):
name = fields.String()
"""
def serialize(self, attr, obj, accessor=None, **kwargs):
(Pdb) self
<fields.Nested(
default=<marshmallow.missing>,
attribute=None,
validate=None,
required=False,
load_only=False,
dump_only=False,
missing=<marshmallow.missing>,
allow_none=False,
error_messages={
'required': 'Missing data for required field.',
'null': 'Field may not be null.',
'validator_failed': 'Invalid value.',
'type': 'Invalid type.'
}
)>
(Pdb) attr
'org'
(Pdb) obj
<__main__.User object at 0x7f277beb7780>
def get_value(self, obj, attr, accessor=None, default=missing_):
(Pdb) self
<fields.Nested(
default=<marshmallow.missing>,
attribute=None,
validate=None,
required=False,
load_only=False,
dump_only=False,
missing=<marshmallow.missing>,
allow_none=False,
error_messages={
'required': 'Missing data for required field.',
'null': 'Field may not be null.',
'validator_failed': 'Invalid value.',
'type': 'Invalid type.'
}
)>
(Pdb) obj
<__main__.User object at 0x7f277beb7780>
(Pdb) attr
'org'
(Pdb) accessor
<bound method BaseSchema.get_attribute of <UserSchema(many=False)>>
"""
if __name__ == '__main__':
grid = Org(name='grid')
krilli = User(name='krilli', org=grid)
UserSchema().dump(krilli)