The idea is to have a convenient command line interface for n26 to:
- Request account balance
- Show transactions
- Enable to only use API component (subclass) to integrate into own application
pip3 install n26
wget https://raw.githubusercontent.com/femueller/python-n26/master/n26.yml.example -O ~/.config/n26.yml
# configure username, password and card ID
vim ~/.config/n26.yml
n26 balance
pip3 install n26
wget https://raw.githubusercontent.com/femueller/python-n26/master/n26.yml.example -O ~/.config/n26.yml
# configure username and password
vim ~/.config/n26.yml
from n26 import api
balance = api.Api()
print(balance.get_balance())
git clone [email protected]:femueller/python-n26.git
cd python-n26
python3 -m n26 balance
- Nick Jüttner for providing the API authentication flow
- Pierrick Paul for providing the API endpoints