simple-model icon indicating copy to clipboard operation
simple-model copied to clipboard

data handling made easy

Results 2 simple-model issues
Sort by recently updated
recently updated
newest added

For example, I can't create the following subclass to use "internally" for my models: ```python from simple_model import to_dict, Model class AsDictModel(Model): def as_dict(self): self.validate() return to_dict(self) ``` When running...