Package konval
source code
Validation and conversion of data.
The problem of sanitizing data (checking correctness and transforming to a
useful form) is widespread throughout programming:
- How do I verify user input is correct?
- How do I munge data from a spreadsheet into dates and numbers?
- How do I convert raw database fields into an object?
Ian Bicking produced a sensible approach to this, embodied in his Formencode
library: data validation and conversion are one and the same thing, and can be
handled by passing raw data through a chain of validators. In this spirit,
konval is a package
- a rich library of validation objects
- base classes for easily producing custom validators
- functions for easily using validators on objects
Version:
0.1
Author:
Paul-Michael Agapow
|
__email__ = ' pma@agapow.net '
|
|
__package__ = ' konval '
|