Skip to content

python-validators/validators

Folders and files

NameName
Last commit message
Last commit date
Jul 1, 2024
Jul 15, 2024
Mar 28, 2025
Apr 3, 2025
Mar 28, 2025
Mar 28, 2025
Sep 3, 2024
Jul 8, 2024
Mar 19, 2024
Mar 20, 2024
Sep 9, 2024
Jul 15, 2024
Jul 1, 2024
Sep 3, 2024
Sep 3, 2024

Repository files navigation

validators - Python Data Validation for Humans™

PyCQA SAST Docs Version Downloads

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.

pip install validators

Then,

>>> import validators
>>> 
>>> validators.email('someone@example.com')
True

Resources


Python 3.8 reaches EOL in October 2024.