Helper for making form validators skippable
Project description
Motivation
While working on the EuroPython 2014 website we ran into a situation where we had a field validator that was rather expensive to evaluate.
Sadly, the validators-attribute on a model/form field is always evaluated as a whole (meaning each validator in that list is executed no matter if a previous one errored out already). So, we wanted to have a way to mark certain validators as not to be executed in case the field was being marked as invalid anyway.
We still wanted to use the field validator API simply because it keeps everything easily testible, though.
How to use
from django.db import models from validatorchain import ValidatorChain from .validators import a_cheap_validator from .validators import another_cheap_validator from .validators import an_expensive_validator class SomeModel(models.Model): field = models.CharField( max_length=100, validators=ValidatorChain() .add(a_cheap_validator) .add(an_expensive_validator, skip_on_error=True) .add(another_cheap_validator) )
This way an_expensive_validator will not be executed if a_cheap_validator already raised an exception, while another_cheap_validator will be executed again.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-validatorchain-0.1.tar.gz
.
File metadata
- Download URL: django-validatorchain-0.1.tar.gz
- Upload date:
- Size: 2.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b65379c83d597c97c6a761163f1464161beb0e8f53d05085653be6763e41f5e |
|
MD5 | 5b48005a1e6cc15c39e3e9d66d1db9ce |
|
BLAKE2b-256 | 33519d5453537f6a827dbfc6c9a0a9b57895fce551b9bf20c729d0fd6360cc84 |