Changes between Version 46 and Version 47 of pyson


Ignore:
Timestamp:
06/07/21 16:58:09 (3 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pyson

    v46 v47  
    22
    33Pyson converts between dicts/lists and python3 objects.
    4 It uses some annotations inspired by jackson.
     4
     5The 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
     7You can control the (de)serialization mapping using jackson-styled annotations.
    58
    69
     
    2225WARNING: there exists another other python library named "pyson", which is an entirely different project.
    2326
    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
    2528
    2629== Basic Mechanism