The ultimate Python validation library you've ever needed.
Dead simple fluent API. Customizable. Reusable.
v8n()
.int_()
.between(0, 100)
.even()
.not_().equal(32)
.test(74) # true
py-v8n
is a reusable fluent validation library.
pip install py-v8n
from py_v8n import v8n
# Create a validator
hello_validator = v8n()\
.str_()\
.first("H")\
.last("o")
# Check values
hello_validator.test("Hello") # True
hello_validator.test("Good bye") # False