peewee-validates icon indicating copy to clipboard operation
peewee-validates copied to clipboard

A simple and flexible model and data validator for Peewee ORM.

Results 5 peewee-validates issues
Sort by recently updated
recently updated
newest added

The latest version of this package is 1.0.8 while the one on pypi is still 1.0.7. Could you please push the latest version to pypi?

I am not very experienced with peewee_validates, I was reading through the documentation and couldn't fully understand validation inside a model class, it seems you can only apply a validator...

In meta class we can provide only static messages as Custom Error Messages but during the project there was requirements to provide dynamic message with computed string error message

Hello! I have model like this: ``` class TestModel(peewee.Model): foo = peewee.ForeignKeyField(ModelOne) bar = peewee.ForeignKeyField(ModelTwo) class Meta: indexes = ( (("foo", "bar"), True), ) ``` And when i use ``...