gitextract_xtbruvdf/ ├── .github/ │ ├── FUNDING.yml │ ├── stale.yml │ └── workflows/ │ ├── docker-latest.yml │ ├── python-app.yml │ └── python-publish.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── Pipfile ├── README.md ├── example.py ├── n26/ │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── cli.py │ ├── config.py │ ├── const.py │ └── util.py ├── n26.tml.example ├── n26.yml.example ├── requirements.txt ├── setup.cfg ├── setup.py └── tests/ ├── .gitkeep ├── __init__.py ├── api_responses/ │ ├── account_info.json │ ├── account_limits.json │ ├── account_statuses.json │ ├── addresses.json │ ├── auth_token.json │ ├── balance.json │ ├── card_block_single.json │ ├── card_unblock_single.json │ ├── cards.json │ ├── contacts.json │ ├── refresh_token.json │ ├── spaces.json │ ├── standing_orders.json │ ├── statements.json │ ├── statistics.json │ └── transactions.json ├── test_account.py ├── test_api.py ├── test_api_base.py ├── test_balance.py ├── test_cards.py ├── test_creds.yml ├── test_spaces.py ├── test_standing_orders.py ├── test_statistics.py └── test_transactions.py