A simple banking dashboard showing a user's accounts and transfers. It also allows user's to create new transfers. This app demonstrates basic usage of APIs in a Python Flask application. Makes use of the Nessie API for all data.
- Python 2.7
- Pip for the appropriate version of Python (https://pip.pypa.io/en/stable/installing/)
git clone https://github.kdc.capitalone.com/tld509/api-demo-app.git
cd api-demo-app
- Create a file
config.py
in the root directory of the project. - Open the file you just created (config.py) and add your Nessie API key as a variable.
API_KEY = "my_api_key"
pip install -r requirements.txt
python run.py
- Navigate to localhost:5000 to view the dashboard.