Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 602 Bytes

README.rst

File metadata and controls

24 lines (16 loc) · 602 Bytes

validators

Python data validation for Humans.

Python has all kinds of data validation tools, but every one of them seems to require defining a schema or form. I wanted to create 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

Resources