zhPavel

Results 64 issues of zhPavel

Add SerializeError that will behave like ParseError

Add a feature to hide some fields with default value in JSONSchema generation because they are for debugging propose or unstable

type: feature
domain: schema generation

Add ability to add default value (default factory), replace default value (default factory), ad remove defined default value (default factory)

type: feature
domain: loading & dumping

```python class Color(Flag): RED = auto() BLUE = auto() GREEN = auto() WHITE = RED | BLUE | GREEN ``` `Color.RED -> ['RED']` `Color.RED | Color.BLUE -> ['RED', 'BLUE']` The...

enhancement
3.x

Add a new provider that can extract all children of the base class (maybe add a decorator that can track inheritance) and return parser for union of this types. Integrate...

type: feature
domain: loading & dumping