Metadata-Version: 2.1
Name: validators
Version: 0.20.0
Summary: Python Data Validation for Humans™
Home-page: https://github.com/python-validators/validators
License: MIT
Keywords: validation,validator,python-validator
Author: Konsta Vesterinen
Author-email: konsta@fastmonkeys.com
Requires-Python: >=3.9,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Project-URL: Repository, https://github.com/python-validators/validators
Description-Content-Type: text/markdown

# validators - Python Data Validation for Humans™

[![Build Status][bs-badge]][bs-link] [![Version Status][vs-badge]][vs-link] [![Downloads][dw-badge]][dw-link]

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.

```py
>>> import validators

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

## Resources

- [Documentation](https://validators.readthedocs.io/)
- [Issue Tracker](http://github.com/kvesteri/validators/issues)
- [Code](http://github.com/kvesteri/validators/)

[bs-badge]: https://github.com/python-validators/validators/actions/workflows/main.yml/badge.svg
[bs-link]: https://github.com/python-validators/validators/actions/workflows/main.yml
[vs-badge]: https://img.shields.io/pypi/v/validators.svg
[vs-link]: https://pypi.python.org/pypi/validators/
[dw-badge]: https://img.shields.io/pypi/dm/validators.svg
[dw-link]: https://pypi.python.org/pypi/validators/

