Metadata-Version: 2.1
Name: pyban-swift
Version: 0.1.1
Summary: IBAN validation tool in Python
Home-page: https://github.com/Imperatus/PyBan
Author: Jurgen Buisman
Author-email: jurgen@labela.nl
License: GNU General Public License v3.0
Description: # PyBan
        Python IBAN validation tool. Checks general format, various country-based 
        formatting rules, and includes general mod-97 validation.
        
        ## Basic usage
        ```
        from pyban.iban import IBAN
        
        try:
            iban = IBAN('BG18RZBB91550123456789')
        except ValueError as e:
            # Handle error
            pass
            
        return iban.formatted  # Return readable IBAN number
        ```
Platform: UNKNOWN
Description-Content-Type: text/markdown
