Skip to content
This repository was archived by the owner on Oct 29, 2023. It is now read-only.

Releases: femueller/python-n26

2.2.0

29 Oct 16:20

Choose a tag to compare

  • added support for SMS 2FA approval (#70 by @rxall)
  • added support for TOML config files (#71)

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

21 Oct 00:50

Choose a tag to compare

  • fixed transactions command failing with an authentication error (#68)

2.1.0

04 Oct 15:57

Choose a tag to compare

  • 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 -json option to output data in JSON instead of table layout (#64)
  • set owner file permissions (#59)
  • less error prone file access (#56)
  • typing fixes (#53)

2.0.0

24 Sep 21:45

Choose a tag to compare

  • New two factor authentication workflow (#49)
  • Human readable date input for CLI parameters (#47)
  • Explicitly set transactions limit to 20 as the n26 API only returns 20 transactions by default (#46)

1.2.0

18 Aug 14:00

Choose a tag to compare

  • Added commands:
    • n26 cards - list your cards (#39)
    • n26 set-limits - set card limits (#41)
    • n26 --version - show the version of the installed pkg (#43)
  • Less verbose date/datetime output
  • Renamed IBAN column title in contacts output
  • Less wide "Initial day of month" column in standing-orders output

1.1.0

30 Jul 20:32

Choose a tag to compare

  • added commands
    • status: List account status data
    • addresses: List addresses of you stored in your account
    • standing-orders: List standing orders
  • display timestamps as human readable date
  • fix yaml loader warning
  • info command None fixes
  • flake8 linting

1.0.0

30 Jul 20:35

Choose a tag to compare

  • added travis ci
  • internal refactorings and fixes
  • test improvements

0.2.7

30 Jul 20:36

Choose a tag to compare

  • fixed tabulate dependency
  • testing fixes