ng-banks

Python Implementation for Lightweight Zero dependency npm package to get list of banks in Nigeria (Recognized by CBN)


Keywords
banks, nigeria, nigerian, cbn
License
MIT
Install
pip install ng-banks==1.0.1

Documentation

NG_BANKS

Python implementation of ng-banks.

INSTALLATION

The package is available on Pypi for installation. To install simply run the command in your terminal

pip install ng_banks

The package contains two methods:

  • getBanks(): this method is used to retrieve all the banks in the system.

  • getBank(param): this method is used to retrieve a particular bank based on the parameter supplied. The parameter can either the be the slug of the bank or the bank code. For slugs or code that don't exist, this method returns None.

USAGE

>>> from ng_banks import getBank, getBanks

>>> getBanks() # should print an array of banks

>>> getBank('GTB') # returns {'name': 'GUARANTY TRUST BANK PLC', 'code': '058', 'slug': 'GTB', 'ussd_code': '*737#' }

>>> getBank('044') # returns {'name': 'ACCESS BANK PLC', 'code': '044', 'slug': 'ACC', 'ussd_code': '*901#' }

>>> addBank(name, code, slug, ussd_code) # Extend the list of banks on the fly. Returns a new bank dict or throws Exception if bank already exists.

CONTRIBUTORS

This package is authored by Bolaji Olajide.