zhPavel
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
Add ability to add default value (default factory), replace default value (default factory), ad remove defined default value (default factory)
```python class Color(Flag): RED = auto() BLUE = auto() GREEN = auto() WHITE = RED | BLUE | GREEN ``` `Color.RED -> ['RED']` `Color.RED | Color.BLUE -> ['RED', 'BLUE']` The...
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...