Python interface to (French) bank online credit card processing services
Go to file
Benjamin Dauvergne 9cc7479088 fix tests 2015-10-06 21:52:43 +02:00
debian Add 'debian/' from commit '50ea90445844f6d1e4180dad992e31be997a5463' 2015-04-02 19:32:22 +02:00
eopayment fix tests 2015-10-06 21:52:43 +02:00
tests paybox: remove ERRORCODETEST 2015-09-21 17:43:30 +02:00
.gitignore gitignore update (#7496) 2015-07-16 14:19:28 +02:00
MANIFEST.in distribute request & response 2015-07-17 10:52:51 +02:00
README.txt Update README.txt with new backends (#7496) 2015-07-16 14:19:28 +02:00
jenkins.sh jenkins.sh: fix reference to authentic2 2015-07-16 14:32:42 +02:00
setup.py setup.py: sync get_version with other projects (no + in version name) 2015-09-22 10:46:51 +02:00
tox.ini add continuous integration scripts 2015-07-16 14:28:39 +02:00

README.txt

Python module to interface with French's bank online credit card processing
services.

Services supported are:
- ATOS/SIP used by:
  - BNP under the name Mercanet,
  - Banque Populaire (before 2010/2011) under the name Cyberplus,
  - CCF under the name Elysnet,
  - HSBC under the name Elysnet,
  - Crédit Agricole under the name e-Transactions,
  - La Banque Postale under the name ScelliusNet,
  - LCL under the name Sherlocks,
  - Société Générale under the name Sogenactif
  - and Crédit du Nord under the name Webaffaires,
- SystemPay by Banque Populaire (since 2010/2011) and Caisse d'Épargne
- TIPI
- Ogone
- Paybox
- SPPlus by Caisse d'épargne (obsolete)

You can emit payment request under a simple API which takes as input a
dictionnary as configuration and an amount to pay. You get back a
transaction_id. Another unique API allows to handle the notifications coming
from those services, reporting whether the transaction was successful and which
one it was. The full content (which is specific to the service) is also
reported for logging purpose.

For SystemPay and SPPlus the module is totally independent from the respective
implementation distributed by the Bank, but for ATOS/SIPS the kit distributed
by the bank is also needed as the protocol created by ATOS is proprietary and
not documented.

The spplus and paybox module also depend upon the python Crypto library for DES
decoding of the merchant key and RSA signature validation on the responses.