All Projects → monofox → python-aqbanking

monofox / python-aqbanking

Licence: GPL-3.0 license
AqBanking wrapper for python

Programming Languages

C++
36643 projects - #6 most used programming language
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to python-aqbanking

fints-institute-db
Database of German Banks and their HBCI / FinTS endpoints
Stars: ✭ 28 (+100%)
Mutual labels:  banking, hbci
developer-resources
A list of useful links, our partners, as well as the stand out projects from the community
Stars: ✭ 86 (+514.29%)
Mutual labels:  banking
Loan-calculator-bank-payment
Loan Calculator a small web application encoded in HTML, PHP, JS, and CSS. If you want to earn from BANK NICHE then you can use Loan Calculator script.
Stars: ✭ 32 (+128.57%)
Mutual labels:  banking
online-banking-system
Online banking system in PHP & MySQL accompanied by a beautiful website !
Stars: ✭ 59 (+321.43%)
Mutual labels:  banking
BankPayment
Persian Bank Payment Server
Stars: ✭ 37 (+164.29%)
Mutual labels:  banking
cyclos
Cyclos is a payment platform for large businesses and organisations
Stars: ✭ 15 (+7.14%)
Mutual labels:  banking
python-emv
EMV Smartcard Protocol Tool and Library
Stars: ✭ 72 (+414.29%)
Mutual labels:  banking
erpnextswiss
ERPNext application for Switzerland-specific use cases
Stars: ✭ 58 (+314.29%)
Mutual labels:  banking
up-bank-api
💎 Typed python client for Up's banking API
Stars: ✭ 20 (+42.86%)
Mutual labels:  banking
bunq2ifttt
bunq2IFTTT creates a self-hosted interface between the bunq banking API and IFTTT.
Stars: ✭ 20 (+42.86%)
Mutual labels:  banking
powerauth-crypto
PowerAuth - Open-source solution for authentication, secure data storage and transport security in mobile banking.
Stars: ✭ 48 (+242.86%)
Mutual labels:  banking
PoolPort
A PHP library to connect all Iranian payments gateways
Stars: ✭ 75 (+435.71%)
Mutual labels:  banking
FinanceKit
FinanceKit is a Framework for iOS and Mac to build apps working with financial data, like money, currencies, stocks, portfolio, transactions and other concepts.
Stars: ✭ 15 (+7.14%)
Mutual labels:  banking
wire
FedWire funds service file parser and writer. The HTTP server is available in a Docker image and the Go package is available.
Stars: ✭ 52 (+271.43%)
Mutual labels:  banking
ofxgo
Golang library for querying and parsing OFX
Stars: ✭ 96 (+585.71%)
Mutual labels:  banking
jbanking
A Java banking API
Stars: ✭ 58 (+314.29%)
Mutual labels:  banking
open-psd2
An open source framework for using banking API's built for PSD2 regulation.
Stars: ✭ 20 (+42.86%)
Mutual labels:  banking
accounts
accounts - General Ledger and financial account service with an HTTP API
Stars: ✭ 39 (+178.57%)
Mutual labels:  banking
ultimateMICR-SDK
Bank check information extraction/OCR from Magnetic Ink Character Recognition [MICR] (E-13B & CMC-7) using deep learning
Stars: ✭ 42 (+200%)
Mutual labels:  banking
persian-tools-rs
An anthology of a variety of tools for the Persian language in Rust
Stars: ✭ 17 (+21.43%)
Mutual labels:  banking

AqBanking API for Python

Build Status CodeFactor

This is a python wrapper for AqBanking - so of course you need the AqBanking and Gwenhywfar dependencies installed for a successful compilation. The only supported things at the moment: get balance of an account, get the transactions of an account (with limitation to start and end date), list configured accounts in AqBanking, check an IBAN.

License

This library is published under the GPLv3 License. See "LICENSE" for details.

Dependencies

The proper development packages are required for:

  • AqBanking >= 5.8.1 (tested until 5.8.2)
  • Python >= 3.1
  • gwenhywfar >= 4.0.0

For the installation, it is necessary to have the proper development packages installed (e.g. apt-get install libaqbanking-dev libgwenhywfar60-dev)

Depending on your bank, you may need to update your bank account information (BPD) through aqhbci4 tool (refer to mailing list). Furthermore there might be a later release to support the TAN recording during balance / login.

Install

To install this library, just execute (append --user if it should not be installed systemwide): python setup.py install

Alternative, you can install the library via PyPi: pip install python-aqbanking

Please remember, that this library only works with Python 3.

Usage

To import it, just do the following: import aqbanking

And then you can verify the IBAN number e.g. with: aqbanking.chkibn('DE19....')

And to list all configured accounts (you can not configure it through this library at the moment), you execute this command: aqbanking.listacc()

Furthermore in order to communicate with your bank, you'll need to register your application at FinTS. You'll receive a code which must be given to the module like: aqbanking.setRegistrationKey('some characters')

For all other functions, you need first to create an account: acc = aqbanking.Account(no=157458624, bank_code=45021512)

New is a function in order to get the information, which jobs or features are available: acc.availableJobs() Implemented is: nationalTransfer and sepaTransfer.

Furthermore if you're doing some transfer you're partially asked to enter three times the password. Now you can build your PIN cache with help of the set_callbackPasswordStatus function. This calls the python callback with parameters token, pin and status whereas the status field can be 9 = reset, 1 = Bad password, 2 = Remove password and 0 = all went fine.

You can find some examples inside of the examples/ folder.

Known Bugs/Missing features

Smartcard/Chipcard support meanwhile integrated. But no "text" that user has to enter something on the readers panel is provided.

The server certificate of the HTTPS connection is not validated at the moment, so do not use it for sensitive data, as man in the middle attack is possible without notice.

Contributing

If you'd like to contribute, please fork the repository and use a feature branch. Pull requests are warmly welcome. We cannot cover everything from beginning. Your experience and expertise is necessary to make a awesome product out of it!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].