Skip to content
This repository has been archived by the owner on Nov 2, 2023. It is now read-only.
/ bni-api Public archive

A Python wrapper for some of BNI's internet banking functionalities.

License

Notifications You must be signed in to change notification settings

ttycelery/bni-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sorry, this repository is no longer maintained.

bni-api Build Status Known Vulnerabilities Maintainability

To put it into perspective, bni-api is simply a Python wrapper for some of BNI's internet banking functionalities. However, it is not recommended for commercial use. This project is intended for small scale private usage. For commercial use, please prefer using BNI's official API here.

Installation

bni-api requires at least Python 3.7 due to the usage of f-strings literal and the requests-html module. To install bni-api, simply run the following command.

pip install git+https://[email protected]/ttycelery/[email protected]

If you want to install it without pip, clone the repository, then run the following command.

python setup.py install

Working Principle

bni-api works by scraping the mobile version of BNI's internet banking website. It uses xpath to select necessary elements that is used to perform an action, thus roughly simulate a real browser session. BNI's internet banking by its nature only allows one session to be running at a time.

Adding an an extra functionalities

This project only covers some functionalities of BNI's internet banking. Therefore, you need to add your own function if you want more. To do so, you need to understand the working principle and also read the already existed functions so that you won't reinvent the wheel.


Documentation

Some examples available in examples folder. A more detailed explanation about available methods and classes are available in this section.

bni_api.ibank

This submodule contains IBankSession which serves its function as session handler.

IBankSession

IBankSession(self)

Class that handles a session of BNI Internet Banking (mobile). To initiate a session, logging in using login method is necessary.

is_session_alive

IBankSession.is_session_alive(self) -> None

Needs login. Checks whether the session is still alive, based on SESSION_TTL

login

IBankSession.login(self, user_id: str, password: str) -> bool

Log in to an account with provided credentials. This will begin session time counting.

logout

IBankSession.logout(self) -> bool

Needs login. Log out from current session.

get_name

IBankSession.get_name(self) -> str

Needs login. Returns associated internet banking account name. Please note that internet banking account is different than bank account name.

get_summary

IBankSession.get_summary(self) -> dict

Needs login. Get bank accounts summary including their corresponding general and balance details.

get_txn_history

IBankSession.get_txn_history(self, account_number: str, from_date: datetime.datetime, to_date: datetime.datetime) -> list

Needs login. Get transaction history of a bank account (specified by account_number) in a specific date range (max is 30 days).

bni_api.utils

This submodule contains some of utilities that might be useful when extracting data from the IBankSession class.

str_to_date

str_to_date(s: str) -> datetime.datetime

Convert str to datetime.datetime object. Date format used here is corresponding to the correct format used in BNI's internet banking.

date_to_str

date_to_str(d: datetime.datetime) -> str

Convert datetime.datetime to str object. Date format used here is corresponding to the correct format used in BNI's internet banking.

curr_to_int

curr_to_int(curr: str) -> int

Convert a currency formatted str to a regular int. This function currently supports only <currency> <amount>,00 and <amount>,00 format. Conversion of string IDR 30.000,00 will return 30000


License

This project is licensed with MIT License.

Contribution

Feel free to open a new issue or pull request. Any kind of contribution is highly appreciated. If you would like to open a pull request, make sure that it is PEP 8 compliant and have no problems (so that it will pass Travis builds).

Legal

Disclaimer: This is not affliated, endorsed or certified by BNI. This is an independent and unofficial API. Strictly not for spam. Use at your own risk.