Last change
on this file since 65 was 59, checked in by Wouter Pasman, 3 years ago |
#44 manual commit of first public release, because this will cause the dist directory to move
|
File size:
679 bytes
|
Rev | Line | |
---|
[59] | 1 | from _decimal import Decimal
|
---|
| 2 |
|
---|
| 3 | from pyson.Deserializer import Deserializer
|
---|
| 4 |
|
---|
| 5 | from geniusweb.issuevalue.DiscreteValue import DiscreteValue
|
---|
| 6 | from geniusweb.issuevalue.NumberValue import NumberValue
|
---|
| 7 | from geniusweb.issuevalue.Value import Value
|
---|
| 8 |
|
---|
| 9 |
|
---|
| 10 | class ValueDeserializer (Deserializer):
|
---|
| 11 | def deserialize(self, data:object, clas: object) -> Value:
|
---|
| 12 | if isinstance(data, float) or isinstance(data, int):
|
---|
| 13 | return NumberValue(Decimal(str(data)))
|
---|
| 14 | if isinstance(data,str):
|
---|
| 15 | return DiscreteValue(data)
|
---|
| 16 | raise ValueError("Expected number or double quoted string but found " + str(data)
|
---|
| 17 | + " of type " + str(type(data)))
|
---|
| 18 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.