-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy path__init__.py
More file actions
67 lines (61 loc) · 1.37 KB
/
Copy path__init__.py
File metadata and controls
67 lines (61 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
"""Validate Anything!"""
# -*- coding: utf-8 -*-
# isort: skip_file
# The following imports are sorted alphabetically, manually.
# Each line is grouped based first or type, then sorted alphabetically.
# This is for the reference documentation.
# local
from .between import between
from .btc_address import btc_address
from .card import amex, card_number, diners, discover, jcb, mastercard, unionpay, visa
from .domain import domain
from .email import email
from .hashes import md5, sha1, sha224, sha256, sha512
from .hostname import hostname
from .iban import iban
from .ip_address import ipv4, ipv6
from .length import length
from .mac_address import mac_address
from .slug import slug
from .url import url
from .utils import validator, ValidationFailure
from .uuid import uuid
from .i18n import es_cif, es_doi, es_nie, es_nif, fi_business_id, fi_ssn
__all__ = (
"amex",
"between",
"btc_address",
"card_number",
"diners",
"discover",
"domain",
"email",
"hostname",
"iban",
"ipv4",
"ipv6",
"jcb",
"length",
"mac_address",
"mastercard",
"md5",
"sha1",
"sha224",
"sha256",
"sha512",
"slug",
"unionpay",
"url",
"uuid",
"ValidationFailure",
"validator",
"visa",
# i18n
"es_cif",
"es_doi",
"es_nie",
"es_nif",
"fi_business_id",
"fi_ssn",
)
__version__ = "0.20.0"