blob: 6211b5bea7266ee7c03908bc95e800397d0e83a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
Python has all kinds of data validation tools, but every one of them seems to
require defining a schema or form. This is a simple validation library where
validating a simple value does not require defining a form or a schema.
>>> import validators
>>> validators.email('someone@example.com')
True
WWW: https://pypi.org/project/validators/
|