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.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.27.tar.gz (56.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_polars-0.1.27-cp314-none-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.14Windows x86-64

iban_validation_polars-0.1.27-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.27-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

iban_validation_polars-0.1.27-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.27-cp313-none-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.13Windows x86-64

iban_validation_polars-0.1.27-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.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

iban_validation_polars-0.1.27-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.27-cp312-none-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.12Windows x86-64

iban_validation_polars-0.1.27-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.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

iban_validation_polars-0.1.27-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.27-cp311-none-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.11Windows x86-64

iban_validation_polars-0.1.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

iban_validation_polars-0.1.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

iban_validation_polars-0.1.27-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.27-cp310-none-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.10Windows x86-64

iban_validation_polars-0.1.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

iban_validation_polars-0.1.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

iban_validation_polars-0.1.27-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.27.tar.gz.

File metadata

  • Download URL: iban_validation_polars-0.1.27.tar.gz
  • Upload date:
  • Size: 56.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_polars-0.1.27.tar.gz
Algorithm Hash digest
SHA256 e5f6f0d5f025fc113c0fe59f4efc7e8995b2c476db25d82e7832a4a8d97c9aec
MD5 a2ff18fba16c0b8f6f2c58d8ef6be5db
BLAKE2b-256 fa623a13b1b81b8db225699b0477d275afda3315da9237bf9d1a7a73a21ae322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp314-none-win_amd64.whl
Algorithm Hash digest
SHA256 bfa6c00681ff1e65aa58c1573d78bfb2d4f4ee0c85f6669c2bf171f8cad589bc
MD5 7a148536beaaf066f455ab1b1ffdab4a
BLAKE2b-256 04b1a936a9ee8e2ffc63e4a417c6433be6e3f2f4d29802d4b4197f16dc37e51a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5152195ce5ded83c4d1e22e533b2df4bf5287b8966d9ab6a74d31fab7a2ed49
MD5 3a4d198bdb8f2f3cb3076e3f3118bb04
BLAKE2b-256 83ddf21549c7b84170294bef3b533c14dacd6d7f42cc4b310abd3ec399d38da6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ce69693fbc2c8cebb867aa66dee6a28b4c57ece1bb380544f4486b1b321cee7
MD5 7a4bc754e4cdcc0efb93981c5210255d
BLAKE2b-256 68b61158ae4a2192913f78eb5454b9613d9581fe67f67f4115f853d3ddef2f5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72f412f124ad9abce578428afd353b90857364a0337872160ce148f42172856b
MD5 34853a31a08b1f4da55e6bd36bd38de2
BLAKE2b-256 fa2d19280de434745d8152edbbdf751bab5e25501365393b2ec345e95f213a9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 62d6a5886b5aa23e6cce398cb8ea10459a2060bcd7b98bea6008ad2e37fdb689
MD5 8bc49dd0fd123a0cca154da8f7abf8da
BLAKE2b-256 89576acc95ef48eea9cdeee86f6f69e1390f923fecf22afcc56d688220283f89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 802a8d0e28405be02e1af63509e580b58cf5f24ec72f594aa1fa6bfc97005809
MD5 c7d0ac10c1d3b99e305513f101feffc8
BLAKE2b-256 4d9ef2287d73610c3a56f3698e1be5f22982fbfb7bd09d470205925caee26ac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d49827c0b7cb319f2358e58fbfa02e35386ab5e4bd51a1a596d25e1997f2e767
MD5 3c5ea7ff90ec851e2b03603a548ba4ca
BLAKE2b-256 de59bb5c1ab536148d2c6ca7bd88e5071645f22defb516b97d387577d4556519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79f2a7e8c9deb2d816b1e090d1840ee275b75f8f5ae0e0d585e336a3dd57729a
MD5 ee504a4d03326d994dec4dcb9e4c3e30
BLAKE2b-256 10dc27f7526a992e7dfe020d2587e88b7d66b9a76aaf2d0f48e1c1ce8bdf7c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bb62ac79c825ed0231e32e62bea15129244490d5e25b5454261e693c5639914
MD5 e1d97b36a99aeb42f375d980ccfdf9c9
BLAKE2b-256 d0b06dcb31b4227bc36ea8c24286a1040c8ba246d11d5556f0976fc0728e1be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e8b9a723c2772e7522fb9ebbd9a520704cc4cf5fd42ebe74e04a11c81119b19
MD5 64af8cd6ab87186e36ee9349853d9432
BLAKE2b-256 9b9c549185a9c27899bbf7fb0379fe34187d6a5022588512c34ac4bde260bbde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 2e3c1ecc224abf9936a5a3f0421bf4e0d34592a845d3351b6baa4b1a50081c02
MD5 f35898347317820b602da0a390564862
BLAKE2b-256 d6846682c29669365e1a7e24ed299de843ec3c75062e0b44e0eaadba8dc9d6c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16509d7ef6dd279e59480b2f817b1a1828d3e9ecaf5e627a302abffe240406c7
MD5 a53421cd98bef384d3ce884a8d7a87bc
BLAKE2b-256 eb2c2a77dbf8e4f09d011b2a4a46176ba9b4f8e5bc9eb6051c9ca232fe365181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 226686f06bb8f66043857c9b7d0ddff56aa272c1d3f94f8a5326282414db1c40
MD5 a50e295b97bf7c2cb8fb4db6f02fbb11
BLAKE2b-256 8a4c57c3daaacf94a4513d8d7be47d8f85b8789940ce98c6b3bf4722587514c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3815317085abc227f6b5f6bd0f5b9fb660a5b807dc418220cb4c6b4f103e1f13
MD5 56df67e66518b83990017f0664938550
BLAKE2b-256 44f77bbc7523eebc6aa4bfdfe78107d274150c4d3c0fe002b77461627be20291

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72c447c869668cb4fc56636d5ffa67c959ad1ac696697424e35a1d18533e283d
MD5 e468a05c6aa312aa80f3e5247219eaee
BLAKE2b-256 5933cc8b4d4b52a257e0c2f46359b27595d86bb3128267c8710f9f257722c41e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4afb3da111cca8dca0818bdb7fef73bb9eb0bacf47ea20fe949b04c3d162abb4
MD5 9ae0b95946862d223c64fc46608c111f
BLAKE2b-256 e27a8d5adfc5e2eeba15a3ff5073ae736022de84dd7842546e130f2d7b92dc2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b7f814d85f269d104ae2f37d925338f38df498227856259260f3f10902b670d
MD5 c8611f3fb61f9decba9c526cbfe31ab0
BLAKE2b-256 3c3533fcacf048f95b55568bbca198007e9083aa2dd2cb5e01afe8120d25ab9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60e619bd7ef8ec340ee9f77c228d646a0d6da0f1566d1103e5102a3859da6871
MD5 0a4a40ebd49744abdeaa63c81b25cb7a
BLAKE2b-256 928f00fc16de68c403b09a10d78227eea9f337a4bcf657d175a6d43720339d17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51213d286013b92725e4f76b0f11bffdee54a7a48824e6e0f01f3c0365b9640e
MD5 c851b346bd6194cf0685164366df0e54
BLAKE2b-256 e1cacca4636835edd6ec499f1d1de7839d4d5c8f03eb7f0aa69b7b239bee828c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7eedff23c7bbf8f9880d074232fdbe602ef238ff0d777fba5dd4aced86cf3f3
MD5 d78cffb005d55c81599865d1159b9fb4
BLAKE2b-256 dceb5ecf5e0a5fd1aae4815bbcbd5b9aec74c8ec016df3ac4f286f29a9608e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 ee5410b98ee02df53eac1e64c3c0b09be18a71ca180949f71617565f38abc5ba
MD5 331b7da9aba1b038febe3721d83e8bb5
BLAKE2b-256 dcce0249f1765a29094b327d58c975567ac9ffd52b760225f1ce02132554e01a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20b3a605431910b562d1436ca52d6acb22ae8b6378fa6e578c183f41412c731e
MD5 c9c0b5e3ec8f5a95bd0cca7479b106c7
BLAKE2b-256 0dd4e2aa32d798cca5a07707beff6f4481a23ee17019355dcb04f405c8e12406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2628293c88d56e12565150cdd419c4e26d5cee96c2cd3f2536630d1ce6b22906
MD5 d8191a6a25799c3c56b090ed112e25e9
BLAKE2b-256 dae85cc5c2f70fb6728d8de69c1aaa34f9be35e0de1e502f84ce09d9981ae2a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ae47a9791441fda56dc1895e6b5bb4adc29d767d72955f191a5b8eb5ba67b91
MD5 e1932008ff990cf4fc5168ebc15b6512
BLAKE2b-256 ab28ee7c215ab6f2d6ee0dc4cd108c1f16b4c57b42d457497658634fef9502ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.27-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 545dcb154e057d25d64bce122497d5f937625d9360d2e785af133101155d55fe
MD5 f3ca856094569c1c5c2a46b9a2b602b6
BLAKE2b-256 667356f75069736de7ddcea777d0cd67c8131a23dd7f4341608f5bf7bb7cb3e6

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