additional types for `click` parameter using `validators`.
Project description
click-validators
Additional click parameter types are built on top of the validators library, providing a wide range of validation options for various data types, including email addresses, IP addresses, credit card numbers, and more. This package simplifies the process of adding robust validation to your Click-based CLI applications.
clicktypes.amex()clicktypes.base16()clicktypes.base32()clicktypes.base58()clicktypes.base64()clicktypes.bsc_address()clicktypes.btc_address()clicktypes.calling_code()clicktypes.card_number()clicktypes.country_code()clicktypes.cron()clicktypes.currency()clicktypes.cusip()clicktypes.diners()clicktypes.discover()clicktypes.domain()clicktypes.email()clicktypes.es_cif()clicktypes.es_doi()clicktypes.es_nie()clicktypes.es_nif()clicktypes.eth_address()clicktypes.fi_business_id()clicktypes.fi_ssn()clicktypes.fr_department()clicktypes.fr_ssn()clicktypes.hostname()clicktypes.iban()clicktypes.ind_aadhar()clicktypes.ind_pan()clicktypes.ipv4()clicktypes.ipv6()clicktypes.isin()clicktypes.jcb()clicktypes.mac_address()clicktypes.mastercard()clicktypes.md5()clicktypes.sedol()clicktypes.sha1()clicktypes.sha224()clicktypes.sha256()clicktypes.sha384()clicktypes.sha512()clicktypes.slug()clicktypes.trx_address()clicktypes.unionpay()clicktypes.url()clicktypes.uuid()clicktypes.visa()
Install
pip install click-validators
to perform validators.eth_address() validation, you need to install the eth-hash>=0.7.0 package.
pip install click-validators[crypto-eth-addresses]
Usage
import the module clicktypes and use the validators as types in click commands.
import click
import clicktypes
@click.command(
help=clicktypes.email.__doc__.split("\n", maxsplit=1)[0],
)
@click.argument(
"email",
type=clicktypes.email(),
)
def main(email):
click.echo(f"valid {email=}")
if __name__ == "__main__":
main()
Dependencies
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file click_validators-0.0.0.tar.gz.
File metadata
- Download URL: click_validators-0.0.0.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.13.2 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53848d21d851eeeaa0ddfbfee47b4972a375fa76639b7ddb7676c50137ca53bc
|
|
| MD5 |
222cf5fd32d7fe157eefc54397ee83f1
|
|
| BLAKE2b-256 |
9f86f114099bf81b45b0f1ebba58ecf61b100e32fb21433f612f39120b3041f5
|
File details
Details for the file click_validators-0.0.0-py3-none-any.whl.
File metadata
- Download URL: click_validators-0.0.0-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.13.2 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05c25f7b3e75ea449556f2e6511ed730d1cc71ce7875ac19474835ec9cafb2d4
|
|
| MD5 |
550f79c49dc261bd0717fa129d267a5a
|
|
| BLAKE2b-256 |
017bd55fcafe533e412a36f83f06d610fae5703c306ac478928198b4815566fa
|