OpenIBAN - Python IBAN 库
OpenIBAN 是一个通用库,用于与各种(目前只有 )IBAN 提供商进行交互。
离线IBAN验证
from openibanlib import openiban
# By trying to initialize an IBAN object
>> > try :
openiban . IBAN ( 'DE89370400440532013000' )
except IBANFormatValidationException :
print ( "Invalid IBAN provided" )
# Or using a static method
>> > openiban . IBAN . format_validate ( 'DE89370400440532013000' )
Tru
2021-06-07 20:03:09
10KB
Python
1