Changes between Version 38 and Version 39 of pyson
- Timestamp:
- 05/31/21 15:10:56 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pyson
v38 v39 7 7 install: 8 8 {{{ 9 pip install https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/1 63/pyson/dist/pyson-1.0.0.tar.gz9 pip install https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/176/pyson/dist/pyson-1.0.0.tar.gz 10 10 }}} 11 11 12 12 or from your setup.py 13 13 {{{ 14 install_requires=[ "pyson@pip install https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/1 63/pyson/dist/pyson-1.0.0.tar.gz"],14 install_requires=[ "pyson@pip install https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/176/pyson/dist/pyson-1.0.0.tar.gz"], 15 15 }}} 16 16 … … 39 39 * the parameter names and param-classes from the {{{__init__}}} function of the actual class are taken 40 40 * for each of the parameters, recursively deserialize the json value for that parameter, using the param-class as targetclass. 41 * call the constructor of the target class, using the parsed json for each parameter 41 * call the constructor of the target class, using the parsed json for each parameter. Missing parameters is allowed if the constructor has default values for that parameter. 42 42 43 43 === Serialization