Skip to content

Retrieve payments from Fio bank API (through fiobank package) and parse them into Payment objects.

License

Notifications You must be signed in to change notification settings

auto-mat/dj-fiobank-payments

 
 

Repository files navigation

Django Fio bank payments

https://travis-ci.org/PetrDlouhy/dj-fiobank-payments.svg?branch=master

Retrieve payments from Fio bank API (through fiobank package) and parse them into Payment objects.

Documentation

The full documentation is at https://dj-fiobank-payments.readthedocs.io.

Quickstart

Install Django Fio bank payments:

pip install dj-fiobank-payments

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'dj_fiobank_payments.apps.DjFiobankPaymentsConfig',
    ...
)

Point it to your Orders model (should be derived from dj_fiobank_payments.models.AbstractOrder:

FIOBANK_PAYMENTS_ORDER_MODEL = 'tests.Order'

Features

Creates Payments from Fio statements and pair them with your custom Order model.

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

About

Retrieve payments from Fio bank API (through fiobank package) and parse them into Payment objects.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 94.9%
  • Makefile 5.1%