Skip to main content

A package to facilitate validation of IBANs and selecting Bank identifier and Branch identifier as a Polars plugin

Project description

IBAN Validation for Polars (iban_validation_polars)

A high-performance Polars plugin for validating IBANs (International Bank Account Numbers) and extracting bank/branch identifiers leveraging Polars Multi-threaded feature and performance.

Quick Start

Example:

import polars as pl
from iban_validation_polars import process_ibans
import os

inputfile = r'iban_validation_rs/data/IBAN Examples.txt'
outputfile = r'iban_validation_polars/examples/test_file.csv'

# File generation 
df = pl.read_csv(inputfile).sample(10000000, with_replacement=True)
df.write_csv(outputfile)
print('writing to file complete')

# using the library
df = pl.scan_csv(outputfile)\
    .with_columns(
    validated=process_ibans('IBAN Examples').str.split_exact(',',2)\
        .struct.rename_fields(['valid_ibans', 'bank_id', 'branch_id'])
).unnest('validated').sort(by='IBAN Examples', descending=True)

# show some results
print(df.collect(streaming=True))

# cleanup
os.remove(outputfile)

Features

✅ Fast IBAN validation (Rust-powered)

✅ Bank identifier extraction

✅ Branch identifier extraction

✅ Support for all IBAN countries (SWIFT Registry v99)

✅ Zero-copy operations where possible

Installation

pip install iban-validation-polars

Performance Benchmarks

This polars plugin was the principal objective of this library; the benchmarks here highlight how much faster it is to use the plugin than to call the Python library with map_element (about 100 times faster).

API Reference

process_ibans(column: pl.Expr) -> pl.Expr Validates IBANs and extracts bank/branch information in a single operation. Parameters:

  • column: A Polars expression containing IBAN strings in electronic format (no spaces) Electronic format only: No spaces or special characters. Case insensitive: Both uppercase and lowercase accepted when the IBAN definition allows it. Length: 15-34 characters depending on country, as per the registry definition.

Returns:

  • pl.Expr: A struct expression containing:
    • validated_iban (str): The valid IBAN if validation passes, empty string if invalid
    • bank_code (str): Bank identifier code (when relevant and valid) otherwise empty
    • branch_code (str): Branch identifier code (when relevant and valid) otherwise empty

Common Use cases

  • Data Cleaning pipeline
  • Data validation report
  • Extracting valid IBANs only (filter for non-empty valid IBANs)

Error Handling

This pluging does not raise exception under normal operation.

Credits

Cheers to the pyo3-polars project! It made this library 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.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: update to the python interface only
  • 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. Improved Polars documentation.
  • 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.13: technical update to polars 0.48.1 and pyo3 0.24.
  • 0.1.11: eliminated rust dependencies (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: add support for Python 3.13.
  • 0.1.4: technical update; updated polars dependency to polars 0.46.0, pyo3-polars 0.20, and py03 0.23.

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_polars-0.1.28.tar.gz (56.2 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_polars-0.1.28-cp314-none-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.14Windows x86-64

iban_validation_polars-0.1.28-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

iban_validation_polars-0.1.28-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

iban_validation_polars-0.1.28-cp314-cp314-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

iban_validation_polars-0.1.28-cp314-cp314-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

iban_validation_polars-0.1.28-cp313-none-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.13Windows x86-64

iban_validation_polars-0.1.28-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

iban_validation_polars-0.1.28-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

iban_validation_polars-0.1.28-cp313-cp313-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

iban_validation_polars-0.1.28-cp313-cp313-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

iban_validation_polars-0.1.28-cp312-none-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.12Windows x86-64

iban_validation_polars-0.1.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

iban_validation_polars-0.1.28-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

iban_validation_polars-0.1.28-cp312-cp312-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

iban_validation_polars-0.1.28-cp312-cp312-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

iban_validation_polars-0.1.28-cp311-none-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.11Windows x86-64

iban_validation_polars-0.1.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

iban_validation_polars-0.1.28-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

iban_validation_polars-0.1.28-cp311-cp311-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

iban_validation_polars-0.1.28-cp311-cp311-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

iban_validation_polars-0.1.28-cp310-none-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.10Windows x86-64

iban_validation_polars-0.1.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

iban_validation_polars-0.1.28-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

iban_validation_polars-0.1.28-cp310-cp310-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

iban_validation_polars-0.1.28-cp310-cp310-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for iban_validation_polars-0.1.28.tar.gz
Algorithm Hash digest
SHA256 e50d01de53a3b192b63c66f920becaf447fc11991bcac604e8278c8c066b09f2
MD5 edf9ec54464e38b7afbd6062f1e8864e
BLAKE2b-256 7d763548b23e246a01a4f56265dc45e7e365015cd635995b2493ac934856c885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp314-none-win_amd64.whl
Algorithm Hash digest
SHA256 b9247dd5e2e54e80cf785178a116c87c0fb024a98ab7039bfe5dbe78671655e6
MD5 13fa1588ff423c86a6fd53be3ac4b446
BLAKE2b-256 a87e8975b300665a3be02bbf03a727765c705f8b6c7802e48ac99cb05e9113d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a982ef533391a59cc134315763b687cf6043be52a9d7e6b8ede1accaea403b1
MD5 d2a96c7836751a142ecb5f9a41736c8b
BLAKE2b-256 1e514cd70323b630411ea17bed7f1a707abeb1cac06d7309f16139f52915218d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc6f7e65f816be0e7658dd2195b8d0447f05cc231ac9e79eaeed1967e1426538
MD5 e190b28f84f90e480d9b6d7ee134d712
BLAKE2b-256 dea09b2dba8c3c3cbe872f4c0c79fa7f98cda1d74cf602553f42a268588310ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6002b24c149a81a494cc70f38968feb85a1cd90c7cc4772bab2f55e34f8fe966
MD5 4bd3ac20a19d1b56ea3ded85f2e96c0d
BLAKE2b-256 367bf0085d273aa7b7464191036aa16d9b27e522b1337a5fa42f649d24b3b1e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 905c5911fcceb5b75cfd90d18b248783df40cab0e845ed4f3725e834404bf17c
MD5 4964b642e79e68deb2446c85a573a893
BLAKE2b-256 9883359bb3160830fec15e8684560a08acc27f52d5f442b90c17213dc3f79897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 06c1b95f2201dcdc705156bc1bcbcf9a0beff026df9bf5be5b2c83c864008334
MD5 bb5f64e1b15ef8c6f1966147a4d82b63
BLAKE2b-256 9e072a4cfebdd0b96cdcd9fafa00dfd8efc928d7e88c6ce56ed608186cf2789e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f491c5d82c672bc4c5e6f245c1b6e30060a85b30c6349754a192a091adec63d
MD5 75538a24829f336333abb8b72310c029
BLAKE2b-256 43b90163ec58b70a1fa256aaf7d26bbb2a5dc608ea66874e0a539001ff8e0b7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3373550557e43b15bcf17ac2a4f2878aba6088845efd5e732f19ab4f4ba05a8a
MD5 efb8d43defd7d303793c19c60d441299
BLAKE2b-256 234d6bf31c874436deeaeb288391191a6f02c5d532f91e20188dfdf4621ae75f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8da42e79c7f153a44913fb23d36017ba1a3aaaf24606b06d3eb47f68997feb8e
MD5 3f0b6936ac53d78c6b4465aeee4fd18b
BLAKE2b-256 dc6c6f3935a4093a1c283c738623048c7c80aca385523fa8f245093427669997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb1d117d08496dea88e0beddc7529c0160672b823fde153b5728b45337ec82ff
MD5 a6dd6797d0a497bd51246f988cf1c991
BLAKE2b-256 0c3bb7709d4dda5e9ec87ca9ce1da2df570a5391f0884022a1729477fbbbd66e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 e830c1d456868d60fddd40859e5543e5fb989ba70582e8e7ed2205200660c4d5
MD5 8f8128035f84cbea5c43769756b5a1c9
BLAKE2b-256 3fb65f17a73a3bd7c3db338443dc2134f7b8a5f78584e6e2de5d82e9177d5996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 967193442af9c9075f7d8785e24e151fa149a3283f430849a013ff7c6e1c0409
MD5 26d0513c551bb74bd736a5fb1a1cb468
BLAKE2b-256 54ad213d1890b41de63080e08b1dcbc2e60cf675dcf248d41ee93c4bc0b2aa42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d677d6b129b86a4627d0cbdfd41763c270fce4b479a92dbc7f983b3ea3926311
MD5 13157d048420e5db078fefc4e31c0943
BLAKE2b-256 84e69f132fee75aebe7d582d4b1e0c47f47a1407f2165a7832265caaa1d19a31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7697328895444c4ac2f1d3d956fff668c615a0a5e1b8734a8af0d442d88eae3
MD5 972de45a2dc4f4ebf336cde1a80fd251
BLAKE2b-256 3eedf365ede2c5db3f751bc8c018e31ecb626796aebd7255efb4e367b3631006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 51b3812dbec2d7220c29f1a80361a1800297e5836a5eff78e262a8fd9ddf4020
MD5 c94555280df5de7fbe13add5902e78d4
BLAKE2b-256 9144f47664f19ffbe03cbd8523c7b2018c13baedb9ec214e66bbd3cca5e85c6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 03a748b4adf568d2d0d454d71d5fd7a471787a29cae5f9782ab9a60daaaef095
MD5 cbd3e03d7c783a73617fdcbcc7311412
BLAKE2b-256 1c7b41a592b320cf11f7497777afe6a886c0b66aa16a9f6b2d4f3806932e3c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68bfad33b547ee0daf2527432cf8c39bdd9888d09b96c057fa7b00643e55dd56
MD5 94c00994ac17fadb85c40387b3258f8e
BLAKE2b-256 e49ca521b3538b6f4351fd5df04273495924cf0386a84656f3ddb11f17600fee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb6039a4ddf49183091c2bb91726c021d97eca8ad5f54cc129d1f506f77210b3
MD5 7577c90e67300bfde60cd582ad8d4f26
BLAKE2b-256 5c7c7338d88db098d40010fc2eb5238e25f18dc3a69b63e860f07125d1c99d3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b05e6c111e8d8dd46b55f38b9273f61bfbf7fd894ec5e1889bdb4bcee03393c0
MD5 1fef3dbc541df4792ed95be8d398efa1
BLAKE2b-256 c43f56a252a961ff0d0545ad2ddf9d31a474e25d1f8add0da0623aac9998f141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4dbdc088b44239816d42e67a7a906313710fd95679525ba4b6f44c55b963b4b7
MD5 0d64a5d74155cb535dbd8fc4aafefdc5
BLAKE2b-256 6e5ce8a88132a91e18936be070772947b6616c9751c2caf89d0eb72479a96b0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 82318a135a006a03af7bc300894bbc9983c425f5cc9e9d1d79057171be0beb8b
MD5 a4a08617c9026d844dee0c9b678473f3
BLAKE2b-256 a2eff19e6a893b03cb34bbcd85eab46bfcb743aaa65bfcb8e4db3c3d6ca2326d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b0a03b6a191e1878ac063a3adc06597db4fafd00facd77de6f4b07f781982d3
MD5 294f0d98ade2c1e5b511a93b3b4d177e
BLAKE2b-256 0b2724dee2578d914047a7a37f74d0da09a3fc7407393ef25a568be29495d555

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbe507c9976dd82f4f9feb1739806e5a5096cae8c10cc979be0c875b649f4da5
MD5 719d793aeced2caec3c11e5ca8361d9e
BLAKE2b-256 17a05175c2f02b71da15fba9baa2b01d5a9c179e850df97e7876bc061a63b163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 758edf545764c42d762037bc38869bd27c9f4e83335e4436caacaa04d77315c9
MD5 8da02004c84dd626b2f84c070c5b7b5c
BLAKE2b-256 e9cb509767d6b3436a7b8eaaac9cb6a1cfc7eefc8538840bff551e0a71e4882d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.28-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d68e21cdb50048afc28efaccdbec6e0aafa7d96d5eec6f12443dcfc055f4f3e
MD5 c42b9469235ecfe159d368b84d29fb8f
BLAKE2b-256 fedfbb5cf84292b1a995a6e33255914644b8aeb7f5fe4bd50e11e427f9d7a93e

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