first commit

This commit is contained in:
Ayxan
2022-05-23 00:16:32 +04:00
commit d660f2a4ca
24786 changed files with 4428337 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
Metadata-Version: 2.1
Name: validators
Version: 0.19.0
Summary: Python Data Validation for Humans™.
Home-page: https://github.com/kvesteri/validators
Author: Konsta Vesterinen
Author-email: konsta@fastmonkeys.com
License: MIT
Platform: any
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.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
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
Requires-Python: >=3.4
Provides-Extra: test
License-File: LICENSE
validators
----------
Python Data Validation for Humans™.

View File

@@ -0,0 +1,62 @@
CHANGES.rst
LICENSE
MANIFEST.in
README.rst
setup.cfg
setup.py
docs/Makefile
docs/conf.py
docs/index.rst
docs/make.bat
tests/__init__.py
tests/test_between.py
tests/test_btc_address.py
tests/test_card.py
tests/test_domain.py
tests/test_email.py
tests/test_extremes.py
tests/test_iban.py
tests/test_ipv4.py
tests/test_ipv4_cidr.py
tests/test_ipv6.py
tests/test_ipv6_cidr.py
tests/test_length.py
tests/test_mac_address.py
tests/test_md5.py
tests/test_sha1.py
tests/test_sha224.py
tests/test_sha256.py
tests/test_sha512.py
tests/test_slug.py
tests/test_url.py
tests/test_uuid.py
tests/test_validation_failure.py
tests/i18n/__init__.py
tests/i18n/test_es.py
tests/i18n/test_fi.py
validators/__init__.py
validators/between.py
validators/btc_address.py
validators/card.py
validators/domain.py
validators/email.py
validators/extremes.py
validators/hashes.py
validators/iban.py
validators/ip_address.py
validators/length.py
validators/mac_address.py
validators/slug.py
validators/truthy.py
validators/url.py
validators/utils.py
validators/uuid.py
validators.egg-info/PKG-INFO
validators.egg-info/SOURCES.txt
validators.egg-info/dependency_links.txt
validators.egg-info/not-zip-safe
validators.egg-info/requires.txt
validators.egg-info/top_level.txt
validators/i18n/__init__.py
validators/i18n/es.py
validators/i18n/fi.py

View File

@@ -0,0 +1,46 @@
..\validators\__init__.py
..\validators\__pycache__\__init__.cpython-310.pyc
..\validators\__pycache__\between.cpython-310.pyc
..\validators\__pycache__\btc_address.cpython-310.pyc
..\validators\__pycache__\card.cpython-310.pyc
..\validators\__pycache__\domain.cpython-310.pyc
..\validators\__pycache__\email.cpython-310.pyc
..\validators\__pycache__\extremes.cpython-310.pyc
..\validators\__pycache__\hashes.cpython-310.pyc
..\validators\__pycache__\iban.cpython-310.pyc
..\validators\__pycache__\ip_address.cpython-310.pyc
..\validators\__pycache__\length.cpython-310.pyc
..\validators\__pycache__\mac_address.cpython-310.pyc
..\validators\__pycache__\slug.cpython-310.pyc
..\validators\__pycache__\truthy.cpython-310.pyc
..\validators\__pycache__\url.cpython-310.pyc
..\validators\__pycache__\utils.cpython-310.pyc
..\validators\__pycache__\uuid.cpython-310.pyc
..\validators\between.py
..\validators\btc_address.py
..\validators\card.py
..\validators\domain.py
..\validators\email.py
..\validators\extremes.py
..\validators\hashes.py
..\validators\i18n\__init__.py
..\validators\i18n\__pycache__\__init__.cpython-310.pyc
..\validators\i18n\__pycache__\es.cpython-310.pyc
..\validators\i18n\__pycache__\fi.cpython-310.pyc
..\validators\i18n\es.py
..\validators\i18n\fi.py
..\validators\iban.py
..\validators\ip_address.py
..\validators\length.py
..\validators\mac_address.py
..\validators\slug.py
..\validators\truthy.py
..\validators\url.py
..\validators\utils.py
..\validators\uuid.py
PKG-INFO
SOURCES.txt
dependency_links.txt
not-zip-safe
requires.txt
top_level.txt

View File

@@ -0,0 +1,6 @@
decorator>=3.4.0
[test]
pytest>=2.2.3
flake8>=2.4.0
isort>=4.2.2

View File

@@ -0,0 +1 @@
validators