Skip to main content

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)

Non-registry countries

By default, only the official SWIFT IBAN registry countries validate. Pass the keyword-only allow_non_registry=True to any validation function, or to IbanValidation, to additionally accept 22 IBAN-shaped account numbers that are not in the official registry (community-sourced, weaker guarantees):

iban_validation_py.validate_iban("AO49012345678901234567890")  # False (default)
iban_validation_py.validate_iban("AO49012345678901234567890", allow_non_registry=True)  # True

iban = IbanValidation("AO49012345678901234567890", allow_non_registry=True)
assert iban.is_non_registry is True

# the set of two-letter codes accepted only with allow_non_registry=True
assert "AO" in iban_validation_py.NON_REGISTRY_COUNTRIES

allow_non_registry defaults to False everywhere, so existing code is unaffected.

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
  • ERROR_INVALID_CHECKSUM (7): The check digits are one of the forbidden values (00, 01 or 99)

Type hints

The package ships inline type stubs (__init__.pyi) and a PEP 561 py.typed marker, so editors and type checkers (mypy, pyright) resolve the signatures of every function and of IbanValidation without any extra stub package.

Credit

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

Changes

  • 0.1.29: added the ERROR_INVALID_CHECKSUM (7) constant, which validate_iban_error_code could already return; added inline type stubs (py.typed + __init__.pyi) so the package is typed for mypy/pyright; added opt-in allow_non_registry keyword argument (default False) to every validation function and to IbanValidation, plus IbanValidation.is_non_registry and the NON_REGISTRY_COUNTRIES constant.
  • 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.

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.29.tar.gz (53.1 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.29-cp314-cp314-win_amd64.whl (136.6 kB view details)

Uploaded CPython 3.14Windows x86-64

iban_validation_py-0.1.29-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.29-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (249.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.29-cp314-cp314-macosx_11_0_arm64.whl (210.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

iban_validation_py-0.1.29-cp314-cp314-macosx_10_12_x86_64.whl (213.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

iban_validation_py-0.1.29-cp313-cp313-win_amd64.whl (135.9 kB view details)

Uploaded CPython 3.13Windows x86-64

iban_validation_py-0.1.29-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.29-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (248.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.29-cp313-cp313-macosx_11_0_arm64.whl (209.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

iban_validation_py-0.1.29-cp313-cp313-macosx_10_12_x86_64.whl (212.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

iban_validation_py-0.1.29-cp312-cp312-win_amd64.whl (136.5 kB view details)

Uploaded CPython 3.12Windows x86-64

iban_validation_py-0.1.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.29-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (249.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.29-cp312-cp312-macosx_11_0_arm64.whl (210.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

iban_validation_py-0.1.29-cp312-cp312-macosx_10_12_x86_64.whl (213.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

iban_validation_py-0.1.29-cp311-cp311-win_amd64.whl (138.0 kB view details)

Uploaded CPython 3.11Windows x86-64

iban_validation_py-0.1.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (260.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.29-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (252.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.29-cp311-cp311-macosx_11_0_arm64.whl (213.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

iban_validation_py-0.1.29-cp311-cp311-macosx_10_12_x86_64.whl (215.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

iban_validation_py-0.1.29-cp310-cp310-win_amd64.whl (138.1 kB view details)

Uploaded CPython 3.10Windows x86-64

iban_validation_py-0.1.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (260.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

iban_validation_py-0.1.29-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (252.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

iban_validation_py-0.1.29-cp310-cp310-macosx_11_0_arm64.whl (213.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

iban_validation_py-0.1.29-cp310-cp310-macosx_10_12_x86_64.whl (216.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for iban_validation_py-0.1.29.tar.gz
Algorithm Hash digest
SHA256 0299d601529bfb7ae400ac1c9d57a84a76b949c81adf0eddff918d18fcbef8d9
MD5 8f39246e5947a6bbd1caf649c2680348
BLAKE2b-256 2977c62eb79cbb3b747966f808f4c6938e5fb52a27242e69adcb41498c486b05

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.29-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 76af720eff138fcc652695ff797b6b4c1b49389eec1f716862573c3288cc9047
MD5 796d023b28ad70962237a893077843aa
BLAKE2b-256 26899daf6fb08db02fd7b7f2891a3275274d58d7f1c47d9f3bfb09e58b9c05a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c5bbcac6f6a598585f8b3a7eadfda04748d18eee0f0bc6d19e866644d2ae029
MD5 366a798ea3134036992bb739a9ddab3a
BLAKE2b-256 5a8c7cceccadb9b049a36ae75dfc25ed8109c76ac89d121f1a6b0bd7e71ef80f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81cadf15ef97597320e55f616ca32462debc4d537bc19cfb6d71c8e4843d3abe
MD5 a9c509292f8499a65786d7eb0212b49c
BLAKE2b-256 ad21e21257343cce4044a4d8179bffa9d49d74e6a0f4fad27a961ca7f74e2314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ecbe3b1035c3029b335119c9a7788aebda33b27efb9f8011516c5cf98451708
MD5 287f5efc2ccca61f23efa89c70e14acb
BLAKE2b-256 22ed17b3c436e01b73b17d88df6015065392fb764949d40e6e5211304db8e72b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 430265a5761f2bfbc8bad111bea8073db4130f606a65c546302119314e180fd6
MD5 c72813d3be98b3e5b0f4394276c7e6ee
BLAKE2b-256 55f2db8a56be45c7c00b43b9c83f315387307623d2118ab20a8e317ccf8e707b

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.29-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 05d508cca13fa2ff4b57772193abecb1ce94d1a5158092128d8a3df42ad3ac7a
MD5 9bb7d2bc2c7391b820de9e9d74ca2e2e
BLAKE2b-256 90d154f89f617b6e40a6ae91c0ec3a5b89dcbf951bd30e700f8dd38c44bfc1cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 704c04d3925c12965f1f7fe1a65d1c6a73f83f484b26448371cc911ae6513261
MD5 12102dbb60cd10f5bf1b518bf009a07e
BLAKE2b-256 9542b8d9f64253d7cd352f2c81f9a4cdc8927455ea4281b032aa71c9635c4aef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e96acef5eac70eb76ef43b364946f99420e2e1dd6abdc29babe0782db3d94516
MD5 f16173a783637b3fa348768f70bad35f
BLAKE2b-256 523fce5e471b6d1878b32502fa05ec02b7caa76ecdd9150e55d0d5d36b414f41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b501afc0da369cd88d39ae50cee0bd7920f5a424f5d2c63dfeea6161e576877
MD5 73da51c60d375f3dd3f2500be6131a35
BLAKE2b-256 a6a772ec742449ad26935ecd2fa5d39a2a3b31a4cad60fb609e0d22ac098ff4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38c5709f823c5c413d3fdc89f5cd19781fe5af6ffadd07c8a6ce9abfc94ad7c2
MD5 2b6ee79befc752af88ab919c06b509c0
BLAKE2b-256 555723847706c266777632053ece00b9cd8763b01841149c9e92111806f701b3

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.29-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c49402686cb051792b05bd184ba0b7460b8c72432c3352d7ac68b8a2c51444eb
MD5 05a6ca88df2455d2793d80e39f953060
BLAKE2b-256 bb76985e874fd84aad7cd3f70a7502f4fd12fe0d946d14eb5227ce63f76be1ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d863d84d465136f9e57e4be2d2d0bfa74b5e5c4aa90bbd549d9034e273049637
MD5 9c46d06361dcb7b308ff511dd5502651
BLAKE2b-256 f7813f451c5cc061772c2693f04cdc1b07f1ad1bddcfb7e23171ebea2f4b4434

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c7e3664e4dffa63eb65681112684076855f89dd4671415aa15d7937d3b212bb
MD5 a44cc454b80aebea1e51ae881949555a
BLAKE2b-256 72bb9665868550ed218d9649a953f48c81eb503f0c5ef995b0587353912c8476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 816c6435dca1e265aa4db5467f4e8a4288f15674547c393295b2709c150b019b
MD5 1c8d89a9fcdcfd377eed5763e2541987
BLAKE2b-256 8084bd5f2fe4c4df1fcac6f96bc921840ab20746ddf85d28f408f698a302317a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f5309ba4bee0663c7863724bb62c12ab947cda49e1f9ca5b5eb670c8a53cb7b6
MD5 a1fd63a7371b1fe2b5e96d0a89ea166c
BLAKE2b-256 efa942634f307e5902cc7553165048ad79e3e55f6614a2b9e49be3abe62da7ec

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.29-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 087b4e68749f9952e6418b0c8f5bc2f3c4b97a68587224268cefb0c4bac00fcb
MD5 be06c24ff9d8cb18d50cfe774d82a269
BLAKE2b-256 9528cbf990a0874370e948a6621c776fc9c489d537f92ce5c0d038d633733fa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62949f6078e2fded6425341ea308dbc266317d0dc759d679aaf3364ccc7e76fc
MD5 07d2d5f5c2f8b75d23ee71f1004d88ab
BLAKE2b-256 0200e7ba6fc9c3c8a77db313259d4b9f724d8ab7cc7a47e917cc228f6e843e78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57e6ca14aaa82d5fc8b52954c0068ba3b0026d3207c444bcc56146b229efa837
MD5 a7d4149e9c424040c9987e19b4e619ae
BLAKE2b-256 23bfb97d3fd7445e6d79548a8fdb562c2c66cdd9d136a323b8e36718504b4769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 789abb71960af3e6bd25b36ee9f3eaafc8758dbe8835d7fd90ee83c9be6011da
MD5 e3465d5487cee1b683cceb10c024b330
BLAKE2b-256 1977bd05977b570d0fc82d44a1477c7caa0359b25ca7e0af1bb238621b587c7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 15e356eb1316ca88157897a022debdd91e39f19982286a6b211ad29db3669fcc
MD5 037aaeee1e4c0f4e76a7c147348fc0f5
BLAKE2b-256 53246730d5c0a600887827f870841ff78abe0fbaa3760048f59253bd92a5541e

See more details on using hashes here.

File details

Details for the file iban_validation_py-0.1.29-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 74c507cf78935bd6587f29fdfb610e28a2a1aa2217a6220dd824a6fd6aeb7241
MD5 b3862b2b444b74066efdfdead49c7c7d
BLAKE2b-256 76b69bbf1d60ae199171d056f0290c59ea2f90bd58362beb40e48f855f16361b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 329f4eb665cc5ca03226a5cf42e8dc371e0b3edf2f15b18972fcc71b25b20b92
MD5 2be38b5a5af8d485e75bf7fba8027f76
BLAKE2b-256 bbe3934865b63ed71008d820510449dfaa18528ce130498b9e8638d63c1109d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbc99c803ca2a124a9046c7a45d0a0261b4e619b35e7ce62ff5573e76cd6a1d8
MD5 473bda0614fd4c9c61b0bd153c326770
BLAKE2b-256 17b23847a731a2b239aec1acbab2dbf7cf5da2176e521c1c84e32c94b666b703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 211dbf28a1095622fb97be66316c470bd710284f9ef6d6c8ad094d5bb75ac412
MD5 41059fddcbc3564b4e61790909e12133
BLAKE2b-256 01294865a3f16750301504522fb94e37df59254773fcbea2337cc55923f65ea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_py-0.1.29-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ec5d1fa52cf3d0360e1565de8d87bb58508ca2fdd0cfd614e2cd1367b97749a
MD5 d0ca01ac099c434c3876a8441b279d1d
BLAKE2b-256 15e94f6bb2be5be9578ee1dda155eae58f0abea9e80e4ab62588e56fc87ac352

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.29 This release

26 files

0.1.28

26 files

0.1.27

26 files

0.1.26

26 files

0.1.25

26 files

0.1.24

26 files

0.1.23

26 files

0.1.22

26 files

0.1.21

26 files

0.1.20

26 files

0.1.19

26 files

0.1.18

26 files

0.1.17

26 files

0.1.16

26 files

0.1.15

26 files

0.1.14

26 files

0.1.13

26 files

0.1.12

26 files

0.1.11

26 files

0.1.10

26 files

0.1.9

26 files

0.1.8

26 files

0.1.7

26 files

0.1.6

26 files

0.1.5

26 files

0.1.4

21 files

0.1.3

21 files

0.1.2

8 files

0.1.1

11 files

0.1.0

5 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page