[Unofficial] python wrapper for making requests to the Mono API and a webhook implementation.
Github Link: monopy
- Account endpoints [transaction log, statament (json or pdf format)]
- User endpoints [transaction, income and identity]
- Unlink Account
- Misc.
You would need to get your mono secret key here, and then move to acquire an account ID via the many Mono Connect options.
pip install monopy
Open up your CMD (replace set
with export
if you are on MAC/LINUX)
set TEST_MONO_SEC_KEY=test_sk_xxxxxxxxxxxxxx
set acc_ID=xxxxxxxxxxxxxxxxx
from mono.api import Account, UserMono, Misc, DirectPay
mono_user = UserMono(mono_sec_key='xxxxxxxxxxxxxxxx')
# Get Transaction logs
mono_user.transaction(id='xxxxxxxxxxx')
{
"paging": {
"total": 190,
"page": 2,
"previous": "https://api.withmono.com/accounts/:id/transactions?page=2",
"next": "https://api.withmono.com/accounts/:id/transactions?page=3",
},
"data": [
{
"_id": "xxxxxxxxxxxxxxxxxxxx",
"amount": 10000,
"date": "2020-07-21T00:00:00.000Z",
"narration": "TRANSFER from Emmanuel to Fred",
"type": "debit",
"category": "E-CHANNELS",
},
...,
]
}
mono_user.income(id='xxxxxxxxxxxx')
py_acc = Account(mono_sec_key='xxxxxxxxxxxxxxxx')
# this represents the account details with the financial institution.
py_acc.information(id='xxxxxxxxxx')
{
"meta": {
"data_status": "AVAILABLE",
"auth_method": "mobile_banking"
},
"account": {
"_id": "5feec8ce95e8dc6axxxxxx",
"institution": {
"name": "GTBank",
"bankCode": "058",
"type": "PERSONAL_BANKING"
},....}
}
misc = Misc(mono_sec_key='xxxxxxxxxxxxxxx)
misc.institutions()
[
{'name': 'Brass', 'icon': 'https://mono-public-bucket.s3.eu-west-2.amazonaws.com/images/brass_logo.jpeg', 'coverage': {'countries': ['NG'], 'business': True, 'personal': False}, 'products': ['Auth', 'Accounts', 'Transactions', 'Balance', 'Income', 'Identity'], 'website': None}, {'name': 'Ecobank', 'icon': 'https://mono-public-bucket.s3.eu-west-2.amazonaws.com/images/ecobank-icon.png', 'coverage': {'countries': ['NG'], 'business': False, 'personal': True}, 'products': ['Auth', 'Accounts', 'Transactions', 'Balance', 'Income', 'Identity'], 'website': None},
.....
{'name': 'Cowrywise', 'icon': 'https://mono-public-bucket.s3.eu-west-2.amazonaws.com/images/cowrywise-icon.png', 'coverage': {'countries': ['NG'], 'business': False, 'personal': True}, 'products': ['Auth', 'Accounts', 'Transactions', 'Balance', 'Income', 'Identity'], 'website': 'https://cowrywise.com'},
{'name': 'Polaris Bank', 'icon': 'https://mono-public-bucket.s3.eu-west-2.amazonaws.com/images/polaris-bank-icon.png', 'coverage': {'countries': ['NG'], 'business': False, 'personal': True}, 'products': ['Auth', 'Accounts', 'Transactions', 'Balance', 'Income', 'Identity'], 'website': 'https://www.polarisbanklimited.com'}
]
Kindly adhere to the following rules:
- fork the repo
- make your changes on a descriptive branch name
- ....and make a pull request ONLY when your tests pass.