• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

docs/H18-Dec-2020-955545

tests/H18-Dec-2020-1,132886

validators/H18-Dec-2020-1,5901,107

validators.egg-info/H03-May-2022-3229

CHANGES.rstH A D18-Dec-20205.4 KiB241133

LICENSEH A D07-Sep-20141.1 KiB2116

MANIFEST.inH A D25-Jun-2014193 87

PKG-INFOH A D18-Dec-20201.1 KiB3229

README.rstH A D02-Jan-20191 KiB3523

setup.cfgH A D18-Dec-202038 53

setup.pyH A D02-Aug-20202 KiB7462

README.rst

1validators
2==========
3
4|Build Status| |Version Status| |Downloads|
5
6Python data validation for Humans.
7
8Python has all kinds of data validation tools, but every one of them seems to
9require defining a schema or form. I wanted to create a simple validation
10library where validating a simple value does not require defining a form or a
11schema.
12
13.. code-block:: python
14
15    >>> import validators
16
17    >>> validators.email('someone@example.com')
18    True
19
20
21Resources
22---------
23
24- `Documentation <https://validators.readthedocs.io/>`_
25- `Issue Tracker <http://github.com/kvesteri/validators/issues>`_
26- `Code <http://github.com/kvesteri/validators/>`_
27
28
29.. |Build Status| image:: https://travis-ci.org/kvesteri/validators.svg?branch=master
30   :target: https://travis-ci.org/kvesteri/validators
31.. |Version Status| image:: https://img.shields.io/pypi/v/validators.svg
32   :target: https://pypi.python.org/pypi/validators/
33.. |Downloads| image:: https://img.shields.io/pypi/dm/validators.svg
34   :target: https://pypi.python.org/pypi/validators/
35