This repository integrates with Mercury Bank's API, to offer an easy and seemless way for interacting with your accounts.
- An account with mercury.
- An API Key (Token), ready for consumption.
- Python 3.*
First update the self.token
string value to the token you got from mercury
## Initialise the class.
mercury = Mercury()
## Get summary data.
summary = mercury.accountOverview()
## Outout the account summary.
print("[+] Total Balance is ${:.2f} over {} accounts".format(summary['balance'], summary['accounts']))