HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/env/lib/python3.10/site-packages/faker/providers/bank/bn_BD/__init__.py
from typing import Optional

from .. import Provider as BankProvider


class Provider(BankProvider):
    """
    Implement bank provider for ``bn_BD`` locale.
    Sources:
        - https://wise.com/gb/swift-codes/BBHOBDDHXXX
        - https://www.banksbd.org/swift-codes.html
    """

    bban_format: str = "????#########"
    country_code = "BD"
    swift_location_codes = ("DH",)
    swift_branch_codes = (
        "ABBL",
        "AGBK",
        "ALAR",
        "ALFH",
        "BCBL",
        "BDDB",
        "BKBA",
        "BKSI",
        "BALB",
        "BRAK",
        "BBSH",
        "BSON",
        "CITI",
        "CCEY",
        "COYM",
        "CIBL",
        "DHBL",
        "DBBL",
        "EBLD",
        "EXBK",
        "FSEB",
        "FRMS",
        "HABB",
        "HSBC",
        "HVBK",
        "IFIC",
        "IBBL",
        "JAMU",
        "JANB",
        "MGBL",
        "MBLB",
        "MDBL",
        "MODH",
        "MTBL",
        "NGBL",
        "NBLB",
        "NBPA",
        "NCCL",
        "NRBD",
        "NRBB",
        "ONEB",
        "PRBL",
        "PRMR",
        "PUBA",
        "RUPB",
        "SJBL",
        "SOIV",
        "SBAC",
        "SEBD",
        "SDBL",
        "SCBL",
        "SBIN",
        "TTBL",
        "UBLD",
        "UCBL",
        "UTBL",
    )

    def swift8(self, use_dataset: bool = True) -> str:
        return super(self.__class__, self).swift8(use_dataset=use_dataset)

    def swift11(self, primary: bool = False, use_dataset: bool = True) -> str:
        return super(self.__class__, self).swift11(primary=primary, use_dataset=use_dataset)

    def swift(self, length: Optional[int] = None, primary: bool = False, use_dataset: bool = True) -> str:
        return super(self.__class__, self).swift(length=length, primary=primary, use_dataset=use_dataset)