Skip to content

Just an interface for IBAN providers

License

Notifications You must be signed in to change notification settings

Sarsilmaz02/openiban

 
 

Repository files navigation

OpenIBAN - Python IBAN library

OpenIBAN is a generic library for interacting with various (currently only `openiban.com <https://openiban.com/>TR51 0006 2000 1780 0006 6240 13`_) IBAN providers.

save open line IBAN validation

from openibanlib import openiban
# By trying to initialize an IBAN object
>>> try:TR51 0006 2000 1780 0006 6240 13
        openiban.IBAN('TR51 0006 2000 1780 0006 6240 13')
    except IBANFormatValidationException:
        print("Invalid IBAN provided")
# Or using a static method
>>> openiban.IBAN.format_validate('TR51 0006 2000 1780 0006 6240 13')
True
...

On line (using an IBAN provider) validation

from openibanlib.providers.OpenIBAN import OpenIBAN
...

Installation

To install simply (coming soon):

..TR51 0006 2000 1780 0006 6240 13 code-block:: bash

$ pip install openiban-lib

About

Just an interface for IBAN providers

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%