]>
git.ipfire.org Git - thirdparty/python-fints.git/log
summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Raphael Michel [Thu, 26 Jul 2018 20:25:50 +0000 (22:25 +0200)]
Add docs
Raphael Michel [Thu, 26 Jul 2018 09:24:14 +0000 (11:24 +0200)]
Add FlickerCode implementation
Raphael Michel [Wed, 25 Jul 2018 16:49:13 +0000 (18:49 +0200)]
Implement direct debit
Raphael Michel [Wed, 25 Jul 2018 16:39:03 +0000 (18:39 +0200)]
Multi-transfer
Raphael Michel [Wed, 25 Jul 2018 16:04:59 +0000 (18:04 +0200)]
Update README
Raphael Michel [Wed, 25 Jul 2018 15:54:55 +0000 (17:54 +0200)]
Default to date in the past
Raphael Michel [Wed, 25 Jul 2018 15:37:21 +0000 (17:37 +0200)]
Support more HKTAN segment versions
Raphael Michel [Wed, 25 Jul 2018 14:33:11 +0000 (16:33 +0200)]
TAN support in HNSHA
Raphael Michel [Wed, 25 Jul 2018 14:26:24 +0000 (16:26 +0200)]
Parse TAN challenge
Raphael Michel [Wed, 25 Jul 2018 13:31:15 +0000 (15:31 +0200)]
Do not parse bank parameter data in two places
Raphael Michel [Wed, 25 Jul 2018 13:09:06 +0000 (15:09 +0200)]
Use sepaxml to generate PAIN message
Raphael Michel [Mon, 23 Jul 2018 19:58:41 +0000 (21:58 +0200)]
Improve error messages
Raphael Michel [Mon, 23 Jul 2018 19:11:34 +0000 (21:11 +0200)]
Parse full HKTAN segment
Raphael Michel [Mon, 23 Jul 2018 18:18:18 +0000 (20:18 +0200)]
Use English terminology
Raphael Michel [Mon, 23 Jul 2018 18:10:10 +0000 (20:10 +0200)]
Give credit to Daniel
Daniel Nowak [Mon, 23 Jul 2018 17:59:08 +0000 (19:59 +0200)]
Bank transfer patch bei Daniel Nowak
Lukas Großberger [Thu, 28 Jun 2018 13:06:54 +0000 (15:06 +0200)]
replace pin variable with getpass in README (#28)
to prevent people from having python files with their bank login lying around
Jakob Hirsch [Wed, 27 Jun 2018 12:35:05 +0000 (14:35 +0200)]
Update README.md (#27)
Added Volksbank/Fiducia and netbank
Raphael Michel [Fri, 8 Jun 2018 08:33:19 +0000 (10:33 +0200)]
Bump version to 0.3.0
Kevin Kennell [Fri, 8 Jun 2018 08:22:38 +0000 (10:22 +0200)]
Update README.md (#25)
Christopher Grebs [Tue, 16 Jan 2018 16:54:41 +0000 (17:54 +0100)]
Add support for acquisition price (Einstandspreis) for holdings. (#21)
* Add support for acquisition price (Einstandspreis) for holdings.
* Fix namingf
Roland Hieber [Sun, 14 Jan 2018 13:14:57 +0000 (14:14 +0100)]
README: add link to find out the server URL (#15)
Signed-off-by: Roland Hieber <rohieb@rohieb.name>
Patrick Braune [Sat, 13 Jan 2018 19:28:27 +0000 (20:28 +0100)]
avoid printing pin/password in log (#20)
* avoid printing pin/password in log
fixes #12
* do not create functions in a loop
Enno Lohmeier [Sun, 31 Dec 2017 14:43:48 +0000 (14:43 +0000)]
add comdirekt (#17)
Works fine using https://fints.comdirect.de/fints
Thanks for this nice piece of code ☺️
Felix Schwarz [Fri, 3 Nov 2017 10:48:45 +0000 (11:48 +0100)]
add "Wüstenrot" to list of tested banks (#14)
Wüstenrot works for me with the usage example:
f = FinTS3PinTanClient(
'
60420020 ',
'Wüstenrot Key', # Service -> Online-Banking -> Alias
'SECRET',
'https://hbci-pintan.gad.de/cgi-bin/hbciservlet'
)
Felix Schwarz [Sun, 29 Oct 2017 10:03:35 +0000 (11:03 +0100)]
add "NIBC Direct" to list of tested banks (#13)
NIBC Direct works for me with the usage example:
f = FinTS3PinTanClient(
'
51210700 ',
'NIBCode', # Service -> Online-Banking -> Alias
'SECRET',
'https://hbci11.fiducia.de/cgi-bin/hbciservlet'
)
Johannes Visintini [Tue, 27 Jun 2017 06:50:45 +0000 (08:50 +0200)]
added DKB to tested List (#10)
tested DKB with the usage example
Johannes Visintini [Tue, 27 Jun 2017 06:50:35 +0000 (08:50 +0200)]
Fix holdings example (#9)
I didn't had the chance to test it finally, but you will get this error if you want to execute the example:
```
f.get_holdings()
Traceback (most recent call last):
File "<input>", line 1, in <module>
f.get_holdings()
TypeError: get_holdings() missing 1 required positional argument: 'account'
```
According to this line https://github.com/raphaelm/python-fints/blob/master/fints/client.py#L168, this should fix the bug.
Raphael Michel [Wed, 14 Jun 2017 15:02:33 +0000 (17:02 +0200)]
Bump version
Raphael Michel [Wed, 14 Jun 2017 15:02:11 +0000 (17:02 +0200)]
Proper escaping in more places
Raphael Michel [Wed, 14 Jun 2017 14:55:34 +0000 (16:55 +0200)]
Fix escaping problems with GAD banks
Raphael Michel [Wed, 14 Jun 2017 07:11:12 +0000 (09:11 +0200)]
Create README.md
Raphael Michel [Mon, 15 May 2017 08:03:30 +0000 (10:03 +0200)]
Bump version
Mathias Dalheimer [Fri, 5 May 2017 14:44:54 +0000 (16:44 +0200)]
client.get_holdings() retrieves all holdings from an account (#7)
* client.get_holdings() retrieves all holdings from an account
* addressed the concerns of @raphaelm, see https://github.com/raphaelm/python-fints/pull/7
Raphael Michel [Tue, 31 Jan 2017 09:54:27 +0000 (10:54 +0100)]
Merge pull request #6 from myaicloud/master
preparing data to fix error in mt940 DateTimeIndication
Andreas Schmidt [Tue, 31 Jan 2017 08:17:13 +0000 (09:17 +0100)]
set back to relative paths
Andreas Schmidt [Sun, 29 Jan 2017 14:07:19 +0000 (15:07 +0100)]
prepare data to fix error in mt940 DateTimeIndication
Raphael Michel [Tue, 10 Jan 2017 13:13:08 +0000 (14:13 +0100)]
Merge pull request #4 from dr-duplo/dev/balance
Add basic account balance request
Christian Meißner [Mon, 9 Jan 2017 23:08:51 +0000 (00:08 +0100)]
Added Sparkasse and Ing-Diba to the list of tested banks
Christian Meißner [Mon, 9 Jan 2017 22:51:08 +0000 (23:51 +0100)]
Add basic account balance request
Raphael Michel [Sat, 7 Jan 2017 17:45:11 +0000 (18:45 +0100)]
Packaging fix
Raphael Michel [Tue, 3 Jan 2017 11:50:17 +0000 (12:50 +0100)]
Merge pull request #2 from gonium/master
Added 1822direkt to the list of tested banks
Mathias Dalheimer [Tue, 3 Jan 2017 11:33:33 +0000 (12:33 +0100)]
Added 1822direkt to the list of tested banks
Raphael Michel [Mon, 2 Jan 2017 22:54:32 +0000 (23:54 +0100)]
Merge pull request #1 from rixx/readme
Minor readme fixes
Tobias Kunze [Mon, 2 Jan 2017 22:50:43 +0000 (23:50 +0100)]
Minor readme fixes
Adds: syntax highlighting, correct import (fints.client instead of
fints3.client) aswell as an added date import.
Raphael Michel [Mon, 2 Jan 2017 20:09:52 +0000 (21:09 +0100)]
Move GitHub repo
Raphael Michel [Mon, 2 Jan 2017 20:09:47 +0000 (21:09 +0100)]
Postbank compatibility
Raphael Michel [Mon, 2 Jan 2017 19:56:29 +0000 (20:56 +0100)]
Rename and package package
Raphael Michel [Mon, 2 Jan 2017 19:37:39 +0000 (20:37 +0100)]
Resolve flake8 problems
Raphael Michel [Mon, 2 Jan 2017 19:37:09 +0000 (20:37 +0100)]
Run isort
Raphael Michel [Mon, 2 Jan 2017 19:34:44 +0000 (20:34 +0100)]
Add get_statement
Raphael Michel [Mon, 2 Jan 2017 18:18:46 +0000 (19:18 +0100)]
Add LICENSE
Raphael Michel [Mon, 2 Jan 2017 18:18:15 +0000 (19:18 +0100)]
Add README and requirements
Raphael Michel [Mon, 2 Jan 2017 18:11:08 +0000 (19:11 +0100)]
Make get_sepa_accounts work
Raphael Michel [Mon, 2 Jan 2017 17:47:07 +0000 (18:47 +0100)]
Move directory, more work
Raphael Michel [Mon, 2 Jan 2017 16:56:08 +0000 (17:56 +0100)]
Bootstrap communication
Raphael Michel [Mon, 2 Jan 2017 15:25:03 +0000 (16:25 +0100)]
Take inspiration from fints4fun