Changes between Version 46 and Version 47 of pyson
- Timestamp:
- 06/07/21 16:58:09 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pyson
v46 v47 2 2 3 3 Pyson converts between dicts/lists and python3 objects. 4 It uses some annotations inspired by jackson. 4 5 The basic version determines the types for (de)serialization from the {{{__init__}}} function in the involved classes. Polymorphism is supported, so derived classes can (de)serialized from a superclass. 6 7 You can control the (de)serialization mapping using jackson-styled annotations. 5 8 6 9 … … 22 25 WARNING: there exists another other python library named "pyson", which is an entirely different project. 23 26 24 The basic version determines the types for (de)serialization from the {{{__init__}}} function in the involved classes. Polymorphism is supported, so derived classes can (de)serialized from a superclass. 27 25 28 26 29 == Basic Mechanism