This repository was archived by the owner on Oct 29, 2023. It is now read-only.
Releases: femueller/python-n26
Releases · femueller/python-n26
2.2.0
Migration Guide:
If you were manually providing a config when instantiating an Api object change your config code to:
from n26.api import Api
from n26.config import Config
conf = Config(validate=False)
conf.USERNAME.value = "john.doe@example.com"
conf.PASSWORD.value = "$upersecret"
conf.LOGIN_DATA_STORE_PATH.value = None
conf.MFA_TYPE.value = "app"
conf.validate()
client = Api(conf)2.1.1
2.1.0
- fixed not overwriting token data file completely
- refactoring to allow external code to check more granularly what the current authentication state is and inform user about 2FA approval when using CLI (#52)
- added global
-jsonoption to output data inJSONinstead of table layout (#64) - set owner file permissions (#59)
- less error prone file access (#56)
- typing fixes (#53)
2.0.0
1.2.0
1.1.0
- added commands
status: List account status dataaddresses: List addresses of you stored in your accountstanding-orders: List standing orders
- display timestamps as human readable date
- fix yaml loader warning
- info command
Nonefixes - flake8 linting
1.0.0
- added travis ci
- internal refactorings and fixes
- test improvements
0.2.7
- fixed tabulate dependency
- testing fixes