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.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.27.tar.gz (55.6 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.27-cp314-none-win_amd64.whl (124.5 kB view details)

Uploaded CPython 3.14Windows x86-64

iban_validation_py-0.1.27-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (244.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.27-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.27-cp314-cp314-macosx_11_0_arm64.whl (197.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

iban_validation_py-0.1.27-cp314-cp314-macosx_10_12_x86_64.whl (203.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

iban_validation_py-0.1.27-cp313-none-win_amd64.whl (124.3 kB view details)

Uploaded CPython 3.13Windows x86-64

iban_validation_py-0.1.27-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (244.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (233.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.27-cp313-cp313-macosx_11_0_arm64.whl (197.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

iban_validation_py-0.1.27-cp313-cp313-macosx_10_12_x86_64.whl (202.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

iban_validation_py-0.1.27-cp312-none-win_amd64.whl (124.5 kB view details)

Uploaded CPython 3.12Windows x86-64

iban_validation_py-0.1.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (244.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (233.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.27-cp312-cp312-macosx_11_0_arm64.whl (197.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

iban_validation_py-0.1.27-cp312-cp312-macosx_10_12_x86_64.whl (202.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

iban_validation_py-0.1.27-cp311-none-win_amd64.whl (125.4 kB view details)

Uploaded CPython 3.11Windows x86-64

iban_validation_py-0.1.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (246.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.27-cp311-cp311-macosx_11_0_arm64.whl (198.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

iban_validation_py-0.1.27-cp311-cp311-macosx_10_12_x86_64.whl (203.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

iban_validation_py-0.1.27-cp310-none-win_amd64.whl (125.3 kB view details)

Uploaded CPython 3.10Windows x86-64

iban_validation_py-0.1.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (246.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (235.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.27-cp310-cp310-macosx_11_0_arm64.whl (198.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

iban_validation_py-0.1.27-cp310-cp310-macosx_10_12_x86_64.whl (203.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: iban_validation_py-0.1.27.tar.gz
  • Upload date:
  • Size: 55.6 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.27.tar.gz
Algorithm Hash digest
SHA256 963196e677e97a87b8279c519905b9d6e0fb72a8fe69938fdb28874b3de86524
MD5 57a34953b2854e1755dd72a721154097
BLAKE2b-256 01c6c5efe800e7f63c6ce4fe6b5cf529d9f813f41689db11801e9063cae576fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp314-none-win_amd64.whl
Algorithm Hash digest
SHA256 c2db51b05ffbc563f93878354bd3da65a5b37b5d12ac176dd289ce41694ddc9f
MD5 89e9b3d11f254454f940aae8bbf6b3b2
BLAKE2b-256 4d32e8f3b815a5b982efbe5c7d8cca3df52740f23118963289cfbc3f22b3ba78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 878cad790801b516d6f668c3309c80dc37ce5fff0cf1aa0fd8247a36938053e6
MD5 90c8f699f0bbd11371ebe06b4205d189
BLAKE2b-256 7b5faf15680687d89a927ad6ff4e835f9bfb87d797f019efaaac75479ada3a4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b904540e80eeb0995aa71cebda1b2a92a0494b8c3265c7f78811713d9e157e7
MD5 eefdae288ea844dae03320d61d1db4a7
BLAKE2b-256 703250bf45d7c1e6569658f37dc91b98682a42a466c4de3faa27993b1567465c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c457611e27d56d0f350ba307954eabd287cd367055a66562351275942bf9953
MD5 dcec7602db9b72c6ca130974104aaaad
BLAKE2b-256 82edbb7ca3888ed6751a9b346a0701af465ddbfdbbfd8cf06fbf16fcf89e4e7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b1cf88d7efa04351677c9a3ff5398e561ff833e4f4ee9c71b81f7aadbacb26f3
MD5 8e8b6fa371145eed79bdc07f6979cbfe
BLAKE2b-256 198e18446f2d547cda6f8d45ace4a7b0ee19da55314003678c7f903c904f4e26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 3ac42484b5a4315104e2e374ea877d30efa3ab8572c1ec368c54dba46b39e6eb
MD5 c49fae2f24da30042571b493c90b89c9
BLAKE2b-256 58e2acd5cb246ecc83af8c9be131fced6a5650756097c9aada751f430d07915b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4364c181cc3803eeb52ba1654141715eb5cfcb5f1799c12c08161f51f6fe9590
MD5 37480d20a9bcb5c0f744601a80674fd3
BLAKE2b-256 ffd5e3a39fd3775754d4b9d981582c9c5c8c2ffa452c87afb2837497942eac8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11f5fa6fc8fa55c932b549e2133ed3a0dae9c7da944d769b8f2d1bc2c5ccb5fe
MD5 fd0d579f641335fc625dc66385deca25
BLAKE2b-256 31f08acf058af355bc187b73a35df4f794af472dcf0ee275e19c0fc722defcca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 209b9e7a1452f7ae8de519cc17e262f8288057a8e50b8482b990318995bdfda4
MD5 c4bed542d13538566ea37d888dde925d
BLAKE2b-256 7a8adeb6727cdd7481f8d40f2cc429da3329436cbe54fba889d217fda24e281c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 087c57ac8ed79c682871e20cd0cebb7dd44d1ff14bd133c4ab928d58fce47371
MD5 8f826d0cbbea02627ffc3175d29644e0
BLAKE2b-256 8a8291aeb27139abdd8a7aba9492bc5f43fc903ef2363ddbbf5d6476c22236a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 79321740cb3f3123be4d386f32203b34224bc67770b8fc4b532ca41a08437f0c
MD5 af06a9c62547a3545c3d719129786dc4
BLAKE2b-256 4dd2c7ca0435ff692486fb7f7c5e029771a0f891f7763cde97d3eb78cc8661b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6742426d15b565b7afcf558df3d906b2f8b8dae175222f150ab31a2ed50b5584
MD5 34438fb828ae1330a8de26d4e1249b66
BLAKE2b-256 191d99b2eb5ffc5cbe0202706987e422d3f3af32cb8a7ddb7378a70c738216f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b27f54dbbc6b44f4ba44ab4cc11b81a023f8f4998494fa7779abc44691daf955
MD5 ce40f9fae915db0ac0164ae7fd9be665
BLAKE2b-256 3fa34f3bbb8c66f12372fc25b8329dd3891fe64f7c1c0b279c7b64ec0f01ef71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b604c474bfa3ef63d94aebb33999c916dcc252e3a62f4c561012533f251deedb
MD5 8fac02ee1b53466389b2da16de11fc47
BLAKE2b-256 bcfedca4d32c13619f6c60832c21ec9df7cad9ce4a2a340fe84537034c8c8f32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a98837f2123fafe8c8f83ed8e1444f5965e19c21cc3b9979a61147d2be66d76c
MD5 d532d3276412c6c35d2b1f4f629db767
BLAKE2b-256 871b8f815efc6333b2f51f75ed8b28b90061d6be45fe817496231cf8665b3059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 31e45b2b0abc726eff5879864e59b477ba0011265c6226c65c373b2bd85d1f97
MD5 91f9b339343e2f65e511d680b444bb37
BLAKE2b-256 ca8db15f4d5e7506a4d4bb3b67f71cb9ede0994385c89296af94df62f4f5ade9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b45733a8567014e29c31d6297f53f1b8f8de32ffb64ba648cd7d37b11c8173aa
MD5 774c44cda31f2e2ca2bca2647a6e3ae1
BLAKE2b-256 40b5dc9d978c20a707e1c0b9625a95390672b661e72ce306a5ac991baa9d4787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 441ba6210da3a2023d862864b15d4b0e923ba8d8fa097b23d15ef6d7fa16adcf
MD5 05b507947e164d9e7e8676465ace9573
BLAKE2b-256 0d6687e5111f6fe4c45e293b4d07f6518927f685173793bdc4f97a2bd990f075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f9fab12378f566aaea83d90b57fc3c7318bdbd2586c93b41b8d005eb2912aaa
MD5 80a5571fce7702516a72cf83f765338f
BLAKE2b-256 16ff1cb36f90d7520fe87aa3612013241de3c10a0a63b6a6783ffca9ecc3f5b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 60bb5a2cfa998f50a4e73a8bf8d31240acc385a8d8ea96ca770eb50644251d58
MD5 fe0508a21e4ad16dbd64c76b4171b786
BLAKE2b-256 9b18bd38217c2bc50ca1f46a36bc94e601fe46d06b06e098b2616fadfec722a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 71245b3697f07b49f279ceab1dc7dffe952de038d3407811d79037acd2859c79
MD5 b1d70e83c59b70e3f710b21ea03571c7
BLAKE2b-256 58865c06f7f0336f91630aba5e039e7a527167e33cefb82439aee57b9abb2ad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83c936d0bb46a589ab5afb7ea7ce05a7254cc5ec5a0216269dcc691718057fcf
MD5 32b3a1f55938ec6219bd841bbb427be6
BLAKE2b-256 f66a811a362a28c1801870442c8044b782c12e2cf492841aeab13d68ce257cd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 692ecf1bbebec517bb1a2310bb23d6c6226c39e53fd4937a77213a06bb101c48
MD5 5336e886ca7a94038e0d61ee483acdcd
BLAKE2b-256 665579fbd350e1bfb11cb98afc264ad96ce09e8e19ce03cbff05be74055e9afe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9eda84731eeb1b07d10081dce09a08bd19c4504f397974bf7cbea110492bf88b
MD5 de463115d10ff6363961dfbf7e19fbf9
BLAKE2b-256 2e1a94599520e60598800b7d1c16a26f1c671f5c27db0b40d0ebd2b1668cfbfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.27-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7379b2817bc25d2a1ba39f9b026fcecc0c50e4bb1ff2738a72bc77789bb34ca5
MD5 c4859f40c675614003ad169f92a5e9df
BLAKE2b-256 a969fbc8ac514c66305a0d428e8327d67f5eb43cfa3602b0aaeabda6a7ba1685

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