Skip to main content

A package to facilitate validation of IBANs and selecting Bank_id and Branch_id

Project description

iban_validation_py

A package to facilitate validation of IBANs and getting the bank identifier and branch identifier in Python.

Short examples

There are four ways to interact with the API:

  • Validate the iban with validate_iban this does not indicate what is incorrect when the iban in invalid.
  • Validate the iban with validate_iban_with_error does the same and give an error message when the iban is invalid.
  • Validate the iban with validate_iban_error_code which returns an error code (0 for valid, 1-6 for specific errors).
  • create an IbanValidation which allows to select the validated iban, the branch_id and bank_id when relevant.

See below code for illustration:

import iban_validation_py
from iban_validation_py import IbanValidation

result = iban_validation_py.validate_iban('AL47212110090000000235698741')
assert(result is True)
result = iban_validation_py.validate_iban('AL47212110090000000235698741VV')
assert(result is False)
result, message = iban_validation_py.validate_iban_with_error('AL47212110090000000235698741VV')
assert(result is False)
assert(message == 'IBAN Validation failed: The length of the input Iban does match the length for that country')   

# Using error codes
error_code = iban_validation_py.validate_iban_error_code('AL47212110090000000235698741')
assert(error_code == iban_validation_py.ERROR_VALID)

error_code = iban_validation_py.validate_iban_error_code('AL47212110090000000235698741VV')
assert(error_code == iban_validation_py.ERROR_INVALID_SIZE)

# Check specific error types
if error_code == iban_validation_py.ERROR_TOO_SHORT:
    print("IBAN is too short")
elif error_code == iban_validation_py.ERROR_MISSING_COUNTRY:
    print("IBAN missing country code")
elif error_code == iban_validation_py.ERROR_INVALID_COUNTRY:
    print("Invalid country code")
elif error_code == iban_validation_py.ERROR_STRUCTURE_INCORRECT:
    print("IBAN structure doesn't match country requirements")
elif error_code == iban_validation_py.ERROR_INVALID_SIZE:
    print("IBAN length doesn't match country requirements")
elif error_code == iban_validation_py.ERROR_MODULO_INCORRECT:
    print("IBAN checksum is incorrect")

result = iban_validation_py.validate_print_iban('AL47 2121 1009 0000 0002 3569 8741')
assert result is True

# # Valid IBAN
iban = IbanValidation('AL47212110090000000235698741')
assert('AL47212110090000000235698741' == iban.stored_iban)
assert('212' == iban.iban_bank_id)
assert('11009' == iban.iban_branch_id)

Error Codes

The validate_iban_error_code function returns the following error codes:

  • ERROR_VALID (0): The IBAN is valid
  • ERROR_TOO_SHORT (1): The IBAN is too short (minimum length is 4)
  • ERROR_MISSING_COUNTRY (2): The IBAN doesn't start with a two-letter country code
  • ERROR_INVALID_COUNTRY (3): The country code is not recognized
  • ERROR_STRUCTURE_INCORRECT (4): The IBAN structure doesn't match the country's requirements
  • ERROR_INVALID_SIZE (5): The IBAN length doesn't match the expected length for that country
  • ERROR_MODULO_INCORRECT (6): The IBAN checksum (mod97) is incorrect

Credit

Cheers to the Pyo3 Maturin project! It made this package possible.

Changes

  • 0.1.28: upgraded to polars 0.54.4, rust 1.96.1, update to iban registry version 102 from Jun 2026 (no significant changes for this package)
  • 0.1.27: upgraded to polars 0.53.0, rust 1.93.1
  • 0.1.26: added user_friendly iban validation (handle spaces), added compile time checks, and updated to rust 1.93, dropping python 3.9, adding python 3.14
  • 0.1.25: added forbidden checksums in the validation
  • 0.1.24: added validate_iban_error_code function to return specific error codes for validation failures.
  • 0.1.23: upgraded to latest Iban register (version 101), only change Portugal (no branch anymore). updated to rust 1.92.0.
  • 0.1.22: upgraded to latest Iban register (version 100), only Albania (AL) and Poland (PL) have changes affecting this project. updated to rust 1.91.1.
  • 0.1.21: upgraded to polars 0.52.0, rust 1.91, improved internal data structure. Enable modern CPU instruction on x86 (x86-64-v3) and Mac (M1) for python, polars and c packages.
  • 0.1.20: technical update upgraded to polars 0.51.0, rust 1.90
  • 0.1.19: technical update upgraded to polars 0.50.0, rust 1.89
  • 0.1.18: technical update upgraded to polars 0.49.1, pyo3 0.25, rust 1.88
  • 0.1.17: memory usage reduced.
  • 0.1.16: improved performance, added territories for GB and FR, and more tests, added WASM (experimental for now), added fuzzer.
  • 0.1.15: improved performance (char to bytes) and improved c wrapper doc.
  • 0.1.14: fixed error for country code IQ (using pdf instead of technicql input file).
  • 0.1.11: eliminated rust dependecies (rust code generated from Python instead of Hash and Serde).
  • 0.1.9: improve mod97 perf (reduce memory needed).
  • 0.1.8: improve mod97 perf (cpu memory tradeoff).
  • 0.1.7: improve performance related to the Iban structure again.
  • 0.1.6: improve performance related to the Iban structure.
  • 0.1.5: added support to Python 3.13.
  • 0.1.4: technical update; updated polars dependency to polars 0.46.0, and py03 0.23 impacting only the Python packages.

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

iban_validation_py-0.1.28.tar.gz (55.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

iban_validation_py-0.1.28-cp314-none-win_amd64.whl (121.9 kB view details)

Uploaded CPython 3.14Windows x86-64

iban_validation_py-0.1.28-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (239.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.28-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (230.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.28-cp314-cp314-macosx_11_0_arm64.whl (194.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

iban_validation_py-0.1.28-cp314-cp314-macosx_10_12_x86_64.whl (199.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

iban_validation_py-0.1.28-cp313-none-win_amd64.whl (121.8 kB view details)

Uploaded CPython 3.13Windows x86-64

iban_validation_py-0.1.28-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (239.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.28-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (230.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.28-cp313-cp313-macosx_11_0_arm64.whl (194.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

iban_validation_py-0.1.28-cp313-cp313-macosx_10_12_x86_64.whl (199.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

iban_validation_py-0.1.28-cp312-none-win_amd64.whl (121.8 kB view details)

Uploaded CPython 3.12Windows x86-64

iban_validation_py-0.1.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (240.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.28-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (230.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.28-cp312-cp312-macosx_11_0_arm64.whl (194.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

iban_validation_py-0.1.28-cp312-cp312-macosx_10_12_x86_64.whl (199.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

iban_validation_py-0.1.28-cp311-none-win_amd64.whl (123.1 kB view details)

Uploaded CPython 3.11Windows x86-64

iban_validation_py-0.1.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (241.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.28-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.28-cp311-cp311-macosx_11_0_arm64.whl (195.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

iban_validation_py-0.1.28-cp311-cp311-macosx_10_12_x86_64.whl (199.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

iban_validation_py-0.1.28-cp310-none-win_amd64.whl (123.2 kB view details)

Uploaded CPython 3.10Windows x86-64

iban_validation_py-0.1.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (241.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.28-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.28-cp310-cp310-macosx_11_0_arm64.whl (195.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

iban_validation_py-0.1.28-cp310-cp310-macosx_10_12_x86_64.whl (200.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file iban_validation_py-0.1.28.tar.gz.

File metadata

  • Download URL: iban_validation_py-0.1.28.tar.gz
  • Upload date:
  • Size: 55.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for iban_validation_py-0.1.28.tar.gz
Algorithm Hash digest
SHA256 a29f5e41fdcfd44e18d58334d769690612187dd50a55e6e1c2464adb899e5436
MD5 9f786974d3a480de3e51a08e037c5c19
BLAKE2b-256 e207e8b9ef15b9ff0f51d8e44735415fdb87ddf3ea20e729b6b5cbd4758b4137

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp314-none-win_amd64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp314-none-win_amd64.whl
Algorithm Hash digest
SHA256 d92af98312c019910416cd7d6bbb9fb194e71f1f48fbee169fcb3e466aa8fd89
MD5 69147432b45e1af235d92b3ee05cf112
BLAKE2b-256 fcd733fd236e52544f17ca9549201a57c62804154d91bd1b43071276dc8ddb62

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d49da9bedc520607db118b24385c1862ac3823ac8eec9901d8716e616c02ce70
MD5 e290e052762bcb2259fe59241cbfcec5
BLAKE2b-256 6c0f9788ee25a51d4aa7355cdb5b405e6ec6b3e3d22369b40050565c23c26c84

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6c1825207e26b3f17636816e346c2f640cba8f9392d4d9d990085e58472903d
MD5 1ab41d744c8be2b803b0388f1a278b7f
BLAKE2b-256 bf55027bc31e679353b28328a406cdbba8c632c96224b52fe6990642c8ef7309

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 219605bc263f10e9a5825ad637396680065de5926fa692b9b8a2dd8454009676
MD5 6a3d445d1a04838d43a59d6a98b3d889
BLAKE2b-256 03224ea80a5a2d54e4e924c99718dba6572fbe7cf447082e94a48c368a2b514a

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c8f762a79563c754eb62fd35b9bbc682806c66f30b1dd3952177aca23d9c5a6
MD5 93164b01d0fc168fad3616cdcde5dd5d
BLAKE2b-256 151b64956e2e906c1c5630f7142fd2f26f3ac8e6bf1af89008c5dd665c279d3c

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 ea260ad91f35b286cbc23d7159f47c15c67f225a33c7afb6d064a8ee26b730aa
MD5 005b8804a1c3a01f2063e30a2ff3a5ac
BLAKE2b-256 c95f92d03c41619aa992c0a3b21231cc83b3ff3cc4dcf2cc8aa8cf5ac23815a3

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a29798121062703e908c52ecb018c11486d416f851a12d415caa22a3617e1634
MD5 35d4601a8a8d908e4e1b7e169b2f6ed0
BLAKE2b-256 5ae4af31607dd2a68e0a9cba1798240c05c75603c601b0835d6c0b53d48ed14d

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ba6df7f722319042124f092abfd5b39ba8455ff0fff57260e3eef0f285dfa08
MD5 1941e21827957e08cda34c7836efe4ed
BLAKE2b-256 0e04b8e7fd4c4ea7365617a6f34fd6a091a8c433ab7fe5ecf60f6375ad209c13

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f11254f8042a2aa404802124afc3c249c3433934217348ad35494f11af293ce1
MD5 e89a1cead490bf208440ba4e002405b4
BLAKE2b-256 00f31d4320296f425f43405b6f3f7bd6243105d6e553f7622b72e175829550aa

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f12e54041956d632e78b4c6e8008cac8e8f6c79d0467615fcb0b2554d48eb011
MD5 40eb35ad650e080d75022bbe30f8c18f
BLAKE2b-256 90e51c16fc8e381ba2b909d5ad65ca7a99033b98d626befff61c1668d3eafd76

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 e0578d2a46f99ac3fb986d1aea43a378778e460a783f8da0f9c054d936424475
MD5 2398a8c46bbb5264cc692ec3355102a8
BLAKE2b-256 d9a07021738c2c33594cf0b4e12171ebd82d2856fc917a1f725bd63427f77d14

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b3c41199a2c936660c99d9b2fae44891af9114dd570d59f31ef55ca609befc9
MD5 22ad4de6b9dcbdaa91985c35dc6fc094
BLAKE2b-256 2e88f676555963a37391ff65bc4cf23380c2073b543a80f24969d28a2b873dd4

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6fcd0884216b1596918fe888d14678170e287a30ec3a8c1ec1e9c8b4c999d62
MD5 b1e5e1fd4fa9ef8dbe8ea77008109de7
BLAKE2b-256 88b292d23ecc9a2b8b29b6360b1f5aeabd9d34da138bffc3727da7efe4132609

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 844afacbaa7c7b4807a8fb76578b9999e8a9e2b41860ec094c09e958e725a6f8
MD5 6d390b38b42187ee343cdcf55bea8bf6
BLAKE2b-256 0003f0e5c73dcf237755159217012b2b2c69618c0253fc002c8533b03c55b986

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 667ba188a1d830754014540db82dee54b84bf30a9eb74ed0b56bfb8d5e2cd0e5
MD5 ade1b343aae6e532216bf6e7fdaea592
BLAKE2b-256 6e2b187ae5cbd3e2a033965572d0276d7fd027449461668e6cc610782d8b4ff0

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 210dc020959271c426cefaea98bad8a125d2213e30806eb9797b24e12fd4505a
MD5 0c1df65a311e71fe87d759ed553a94f0
BLAKE2b-256 00255eaeb3a53ca12d171ba62ecaaf1e5e3cd97d72f7daf380b43c8fb5335a80

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34bc2d2b3a797cdf64c4860396b0f2a1ad5b4d92600cadbfdd4432654d651d0a
MD5 d27b115df480115f494f680e1331a170
BLAKE2b-256 3589767f4418c20298784e2ecc61046b2ebbe1b409b424c96b274e262a0f60e1

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abdcf90e42098fbe1f3fac3fa9cb9de4235fcee810d829b5e2ffb4af672f5269
MD5 907c641f5191a176b5cbb878aff49d67
BLAKE2b-256 a86b4da94991c8f56bda3e382c3cb8f53b34989fa6e79edb1de55453f9d14143

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d767c2f77f065d06abbf1e07d88b8e50fafaf0aa5b8aee4c0627d07cd96830a
MD5 c4ecdea6cb219c4df17696a9647248ee
BLAKE2b-256 cad393cde335f3d98828d97f1aed016c2862604c0cec4099b56429fa640798bb

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a5dbe09fb869df3ba5762a010abab7e9f2b20cb1c83fa79bbaff08b666b4ef6
MD5 8c5d79cd75bbcc2923ba000899306930
BLAKE2b-256 ecee5b0b133faa362f9c04d72b4b8f239989bd465a18fdcefa77035f79c99af4

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 a463eec223e046726add04379345e3045fec79e2dc92c863b4b99b815c668440
MD5 da03cbdba069f0753a1d10dc271a70af
BLAKE2b-256 9f1d67fd922069f63173f38332113445b8f989fb177e17a267a791daea72a8f8

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1492356a5acc259a95344964ab0d9415e84e219f4be308fb15dba4cd21c5b07f
MD5 51b3eea6a19fc150a0ae2adbaa8571a7
BLAKE2b-256 27063ab98bdb51b380184f078304022ac2b6506b5930215a55cd8c5c5627306d

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd433fcd18eeaf3abbbe606ad9c98ce50d6a745b8ad102e8b3c47558dbcd6d7f
MD5 e130c8193c1835453180b60977b36878
BLAKE2b-256 d74a223da14bcbcc8e962b85c005064777ccbf12b6447c3b36391aa980bf3c54

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c10f855dfb967ea7d942041e4f987317fafacd5c60f49ebc251ce53932edb25
MD5 e884dded98cddf53616495b16bc285d4
BLAKE2b-256 f6b95aea3a375273b802dd79affdfb2b2918dfb6c56b6136cfe9d4897b14e7ff

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.28-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.28-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d45c3d5ebfe00513515fc358a2f1a294fc629d8a6ceeb874ed569e2308df9f1f
MD5 33c12163f1decaf42c5695ab4f2d12ea
BLAKE2b-256 bd645788ed0eae8c33ef2c92e8ab050c66f0043bc860c34edd90cac7c5148f25

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page