#validation #iban #python #facilitate #bank #polars #branch

iban_validation_rs

Facilitate validation of ibans and selecting Bank_id and Branch_id in Rust

6 releases

0.1.6 Feb 28, 2025
0.1.5 Feb 25, 2025
0.1.2 Dec 26, 2024

#2 in #iban

Download history 96/week @ 2024-12-18 140/week @ 2024-12-25 22/week @ 2025-02-05 104/week @ 2025-02-12 191/week @ 2025-02-19 232/week @ 2025-02-26

549 downloads per month

MIT license

25KB
416 lines

Iban Validation rs

Facilitate validation of ibans and getting the bank identifier and branch identifier in Rust.

See documentation for implementation details and a short example.

Use Cases

The package is not a general-purpose library to parse IBANs. The intention is not for a user-facing library (in other words, for backends, not frontends). Hence, the 'print' format, loosely documented in the Iban Registry, is not implemented. Further, both the input and output of the library are intended to be in the 'electronic' format. BBAN (Basic Bank Account Number) validation only validates that the length, the position of the bank identifier, and the branch identifiers are correct. Further country-specific validations are not performed.

In contrast, the intention is to provide a quick, correct validation of the IBAN. Ideally, using minimal memory and CPU and reading the input only once. To integrate easily with other packages, it aims to keep dependencies low. A Python script pre-processed data for the library to decouple the main library and limit code change when a new version of the IBAN registry is released.

For now, parallelisation is not in the scope of the core library as usage through other libraries is likely to provide that, like in the polars plugin.

Changes

  • 0.1.6: improve performance related to the Iban structure
  • 0.1.5: improved documentation
  • 0.1.4: technical update; updated polars dependency to polars 0.46.0, and py03 0.23 impacting only the Python packages.
  • 0.1.3: Updated to latest Iban Register v99 from Dec 2024

Dependencies

~0.7–1.6MB
~33K SLoC