Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
docs/ | H | 18-Dec-2020 | - | 955 | 545 | |
tests/ | H | 18-Dec-2020 | - | 1,132 | 886 | |
validators/ | H | 18-Dec-2020 | - | 1,590 | 1,107 | |
validators.egg-info/ | H | 03-May-2022 | - | 32 | 29 | |
CHANGES.rst | H A D | 18-Dec-2020 | 5.4 KiB | 241 | 133 | |
LICENSE | H A D | 07-Sep-2014 | 1.1 KiB | 21 | 16 | |
MANIFEST.in | H A D | 25-Jun-2014 | 193 | 8 | 7 | |
PKG-INFO | H A D | 18-Dec-2020 | 1.1 KiB | 32 | 29 | |
README.rst | H A D | 02-Jan-2019 | 1 KiB | 35 | 23 | |
setup.cfg | H A D | 18-Dec-2020 | 38 | 5 | 3 | |
setup.py | H A D | 02-Aug-2020 | 2 KiB | 74 | 62 |
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