Skip to main content

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

Non-registry countries

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

df.with_columns(
    validated=process_ibans("ibans", allow_non_registry=True)
    .str.split_exact(",", 2)
    .struct.rename_fields(["valid_ibans", "bank_id", "branch_id"])
).unnest("validated")

allow_non_registry defaults to False, so existing pipelines are unaffected.

Use country_status(column: pl.Expr) -> pl.Expr to classify each IBAN as "registry", "non_registry", or "invalid" without needing to decide allow_non_registry up front - filter or group on the result in pure Polars:

from iban_validation_polars import country_status

df.with_columns(status=country_status("ibans"))

Common Use cases

  • Data Cleaning pipeline (see pandera_example.md)
  • 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.29: added opt-in allow_non_registry keyword argument (default False) to process_ibans, plus a new country_status expression classifying IBANs as "registry" / "non_registry" / "invalid".
  • 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.

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.29.tar.gz (53.0 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.29-cp314-cp314-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.14Windows x86-64

iban_validation_polars-0.1.29-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

iban_validation_polars-0.1.29-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

iban_validation_polars-0.1.29-cp314-cp314-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

iban_validation_polars-0.1.29-cp314-cp314-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

iban_validation_polars-0.1.29-cp313-cp313-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.13Windows x86-64

iban_validation_polars-0.1.29-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

iban_validation_polars-0.1.29-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

iban_validation_polars-0.1.29-cp313-cp313-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

iban_validation_polars-0.1.29-cp313-cp313-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

iban_validation_polars-0.1.29-cp312-cp312-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.12Windows x86-64

iban_validation_polars-0.1.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

iban_validation_polars-0.1.29-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

iban_validation_polars-0.1.29-cp312-cp312-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

iban_validation_polars-0.1.29-cp312-cp312-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

iban_validation_polars-0.1.29-cp311-cp311-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.11Windows x86-64

iban_validation_polars-0.1.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

iban_validation_polars-0.1.29-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

iban_validation_polars-0.1.29-cp311-cp311-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

iban_validation_polars-0.1.29-cp311-cp311-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

iban_validation_polars-0.1.29-cp310-cp310-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.10Windows x86-64

iban_validation_polars-0.1.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

iban_validation_polars-0.1.29-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

iban_validation_polars-0.1.29-cp310-cp310-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

iban_validation_polars-0.1.29-cp310-cp310-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for iban_validation_polars-0.1.29.tar.gz
Algorithm Hash digest
SHA256 893d4addbc3b1b0029065b3d6e452872cf5f5aa7b86f62a7b0fef47ec46988c6
MD5 ba94d0f34437c68751575390c4e1487e
BLAKE2b-256 486964b03b773fec71c24e48a0636d2d70f2b15ef00b87de59ce123f81dc424a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b8570292ce3633becbec78cd0447a7869ff304f2d8a33e071d374784b3e1a58d
MD5 9e79595311ffb4542e0c7428d11a8eea
BLAKE2b-256 e9194c9a40282f1fb73d35fe54c553bfe0ced062688ea4a6915bd1d60ec099ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35cfb9c02cb1c26e36cd80e73677562bd27f46f24cda3ac1af10716bd71fcdae
MD5 968c919d88843f1d1e874c85b4259433
BLAKE2b-256 d8e00bf6603c9cb2c544e8fef450428b624a5a966524126a4b552c53a81209bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 483d888e473771ae40b9c4014c5ae3ddcbd53bad717d5230a4310e66f98d4c17
MD5 2c0d242d8deedbde88ce34f0474aeb3e
BLAKE2b-256 5cbf4180a89b1ae6136acf5bdcee874290b370b319bfcedd49cc5f05ea7fa705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad0eecd3fdd27d8a353781dd678fa2ca7a02e7512a207b80fbd724bda6fc3da0
MD5 52baccc618e66e6b3838d0b18fae1add
BLAKE2b-256 e734a638ea58ca0310749263a80079fa8d1b1ab4b645e7d6ec2d94813289a1d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e36ad4e5e2745174b6095b961bbec53aa0be1ffcba743325275da32bded183ba
MD5 a903f5fd3baa5c7632de5905e454c5ed
BLAKE2b-256 4a33fff1d3edcfa6a914f34f03fd99eacc39b84482211f0900ccb46795feaffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4de7038aea3a8ccc994f2a2871d113835f0ecffcae804109f5593cac592c870b
MD5 324d47762e9f6958be07669f8c57bfd0
BLAKE2b-256 f1524f82bd278eb1d2262d3329adc6b063bb7a99aca4c6c3d1609ca2fe2d05cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c3503fb8c027cdae59fed17d38a4f3dd4356048cd3372b252ac0f0726aecd4c
MD5 b21868b0a644da2301638d49afc94dd7
BLAKE2b-256 e63383e87233ca55183e39a8482e1d1a7dad6e744aea3e8f6eab242160d54402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e07e27d173bf51333a6848b54c3760a1e0c26d13f2615fd4c0ca0fa71910d415
MD5 6b04205015c20b5f0270012a51b4b70c
BLAKE2b-256 b0cffa9042a74b460050bf7124f28ebd9793f4c454a9e556ca85d9fd263206dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d27543566054cb8101d3dfa93b59c50fb320e2b2881d4e388b7bfc22fc7591d
MD5 2809e5afc1b26cd1b37b4821564f8424
BLAKE2b-256 d7578b3d7ded3d99c4e0c9fe7cbae95f69fc5928ebaef6cec55c553c0dfc1cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26add03dec30aef865031e4610b66e4f8d666445c45b306d4ba4bc4e957b45f2
MD5 e7bf8ab15b5a2346df5fc109b071b868
BLAKE2b-256 834139bdc5050f251b7f9ca5bb5e5f382057daeda116efa38e2e67df17e45019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d8eef28c07598bacfeda7d0ce956e759e011c5acd998bd6954bcc415c57bafa3
MD5 c1344b9980dcea105c482108fdb9cb89
BLAKE2b-256 0b643f4087d6624d0816964a6ad1deac6d8443841f7f3a5137187cdb49ba483f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 127af4caf6d5a881f07268a91a7dc10faa66655b6883935141dd1dd610b40f47
MD5 edddda77a864a7efdbf7f9566e07850d
BLAKE2b-256 5e194fcc2c5dfb40596d46555245c94191164334af1b2dbbe0563757c8c13e92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9ed7d55fb51f4f40b61779478e24aeef418b54d269ee1f3dc5f660e916f6723
MD5 561b70c1688d06b9840e2b5bf7370bd8
BLAKE2b-256 2b28651cafa6cc95a130e90e6b915b56503f805cde87a3b4d310d6f3a5d61a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dcc1b419fa464cfd85dbcf879e8e39929e81ba6384f3feb18b40af0bc800026
MD5 ed785a2d3cb66bcab5fa76177616218d
BLAKE2b-256 3f2e0723a8556cd161be5304f5b1ea6ac335c7a4dacc2d1434ef91ed73f411ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 178db3f906eb43f9abf9ee7c04d4661fe0e2c34bfe8abe0d6742ad7a8ea1e2c2
MD5 1a7dd9933c94c4ff71dd53e67b585eac
BLAKE2b-256 d32a8e9d336124d9fdd8d5e34368eebd84ead88d822ef1a1fbacc57cd882c878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b6146c0a3e58438eafb6193b890b91c9a798f7027c05dde25fbafe54e4626f6d
MD5 f31f2cd7ae44564c34fcade2761dafac
BLAKE2b-256 c364cf964c2b361d0e22e42ed9c73867234947a251b2c82adf9fadf129d17938

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba7d8486aa2b89dac2f8f62c5141ca8ee907448bf3f9bbb3b488a3f337a2caaf
MD5 c88afae6ed99dbeedea3202ebf9ec44f
BLAKE2b-256 99158ad3f14e07b4312ab35e4a431e10bf435ec9af3499d9ddc2ed58492f0135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e10ab7d2a5a4cbeb7f0598f68c7eeb3ac1aa790d6889aa93435cb08ebc004e5
MD5 4f884c83e2080323733afdee183458eb
BLAKE2b-256 a05c5f98a4ece899190617ef1d0d133173131ca3352fd91bc527ca68b8ef2a03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6df52cede1811d83b531e5de6e9f035eac3ce65058e014179249503467eba2d7
MD5 4c59d595ba3acdb800b19199b6c0097d
BLAKE2b-256 a83c573bdee652805213514802e3d3e239d2b73523749d87087868bcda6a5560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1cd134ad72b9fc0d65975f0df62fb7066fc5d2c564cf82ec8e5bf371cbd292da
MD5 9d090c498896260a64543b4c603a941d
BLAKE2b-256 b35646d64a147138adcca44fb8c0c99e993a7a327eb518d88e34eb4c5ee3315f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 10f5edb846e45f09c76be67bd93fd96ff8615640e49939c7101c3fd7c7ffa154
MD5 cd97debfe589230e0b1a8433c0904955
BLAKE2b-256 e7d9ff4e36ff763bbf3f548f12e3b683e494924c5cbb72d7f752834ca42ca17f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dde3a593933411fa637ea132e7adfcfc86b4c2aa60f49f2b65b95ed3c36df5a
MD5 b1f2546be8a36b6feeeee0dd9d219b29
BLAKE2b-256 e6154c21699d58c38fa3f7676e4c476d9034ed2d8ec4a2065ee9a30c238cc82a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f1cc9962b71d6d461ee15b638b66aa1ae7f407928e6e55b33169d76ed52ba51
MD5 735cf5fc25a27d6eecc031ba54bb665d
BLAKE2b-256 6bf143170ef02b78c64b0441c597f7f8e7b81940315359749ad405648c4fc5b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68e87d24d991b0205c14b47c2553406514fbfecce8a8cb9bb1db5649cdcc9fa4
MD5 ab7580e925e110aa256f14b73b750147
BLAKE2b-256 c97a9e09e452704de70207d45edf88a17795419551d1e54abef0028a5b15d336

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for iban_validation_polars-0.1.29-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a67716973f5a72c0dd1be7d536b7dcf3202e1fe619b2caa56845691b48a842c8
MD5 bfeff2a0f3e4d90c357c68f15fe908f3
BLAKE2b-256 4fc2a860b1d0f25e8c98083aa9fb4815507d3cf6246469c2d7bdbbd7197502f3

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.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

4 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