import time
from datetime import datetime
from cn.jsonfy.core import DateTimeDesc, BaseJsonModel, DictDesc
class Foo(BaseJsonModel):
infos1 = DictDesc("infos1")
up = DateTimeDesc("up", format='%Y-%m-%d')
down = DateTimeDesc("down")
if __name__ == '__main__':
f = Foo()
_fake_time = datetime.now()
f.up = _fake_time
f.down = _fake_time
_dict = {"key": "value"}
f.infos1 = _dict
print(f.toJson())
f_obj = f.fromJson(f.toJson())
print(f_obj)
-
Notifications
You must be signed in to change notification settings - Fork 0
Json与Python对象的双向绑定(jsonfy) Jsonfy: Lightweight two-way binding of JSON and object without third-party dependency
License
liangbaika/jsonfy
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Json与Python对象的双向绑定(jsonfy) Jsonfy: Lightweight two-way binding of JSON and object without third-party dependency
Topics
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published