schematics
schematics copied to clipboard
Python Data Structures for Humans™.
Running the benchmarks added in https://github.com/schematics/schematics/pull/392 I was able to identify memory and initialization time regression for the library with the introduction of the `net.py` types. To mitigate that the...
Ensure the example to extend base type class can handle cases where no converters are provided by the user. This modification allows the code to work correctly even if converters...
fix IntType('123') validate() pass problem, actually expect throw an not type int error
```python from schematics.models import Model from schematics.types import StringType, ModelType from schematics.exceptions import ValidationError, DataError import schematics class ChildModel(Model): field1 = StringType(required=True) field2 = StringType(required=True) field3 = StringType(required=True) class ParentModel(Model):...