معرفی شرکت ها


django-thorbanks-0.6.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

`django-thorbanks` provides a Django application for Estonian banklinks (iPizza protocol).
ویژگی مقدار
سیستم عامل -
نام فایل django-thorbanks-0.6.3
نام django-thorbanks
نسخه کتابخانه 0.6.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Thorgate
ایمیل نویسنده info@thorgate.eu
آدرس صفحه اصلی http://thorgate.eu
آدرس اینترنتی https://pypi.org/project/django-thorbanks/
مجوز BSD-3-Clause
# django-thorbanks [![Build Status](https://travis-ci.org/thorgate/django-thorbanks.svg?branch=master)](https://travis-ci.org/thorgate/django-thorbanks) [![Coverage Status](https://coveralls.io/repos/github/thorgate/django-thorbanks/badge.svg?branch=master)](https://coveralls.io/github/thorgate/django-thorbanks?branch=master) [![PyPI release](https://badge.fury.io/py/django-thorbanks.png)](https://badge.fury.io/py/django-thorbanks) Django app for integrating Estonian banklinks into your project. ## Features Bank | Protocol | Authentication | Payment --------------- | ----------- | ------------------- | ------- Swedbank | iPizza | :heavy_check_mark: | :heavy_check_mark: SEB | iPizza | :heavy_check_mark: | :heavy_check_mark: Danske | iPizza | :heavy_check_mark: | :heavy_check_mark: LHV | iPizza | :heavy_check_mark: | :heavy_check_mark: Krediidipank | iPizza | :heavy_check_mark: | :heavy_check_mark: Nordea | iPizza | :heavy_check_mark: | :heavy_check_mark: ## Usage ### 1. Install it: **Pip:** ```bash pip install django-thorbanks ``` **Pipenv:** ```bash pipenv install django-thorbanks ``` **Poetry:** ```bash poetry add django-thorbanks ``` ### 2. Add to installed apps ```python INSTALLED_APPS = ( # Add the following apps: "thorbanks", "thorbanks_models", ) ``` ### 3. Configure and create migrations: **With MANUAL_MODELS:** - Remove `"thorbanks_models"` from `INSTALLED_APPS` - follow instructions from [thorbanks.settings.get_model](./thorbanks/settings.py#L59). **With default models:** Make django aware that thorbanks migrations are in your local apps folder via settings.MIGRATION_MODULES: > Note: Replace `shop` with the name of an existing app in your project. ```python # Tell django that thorbanks_models migrations are in shop app (in thorbanks_migrations module) MIGRATION_MODULES = {"thorbanks_models": "shop.thorbanks_migrations"} ``` Now run `makemigrations thorbanks_models` and `migrate` management commands to create and apply the migrations. ### 4. Add settings.BANKLINKS For a working example see the definitions in [example/settings.py](example/settings.py). > Note: >You will need a public and private key for each bank integration. >In case you don't have the public key, you can generate one out of a certificate by: >``` >openssl x509 -pubkey -noout -in cert.pem > pubkey.pem >``` ### 5. Link Transaction to your Order model > Note: When using MANUAL_MODELS replace `thorbanks_models` with your local app name ```python class Order(models.Model): # ... other fields transaction = models.OneToOneField( "thorbanks_models.Transaction", null=True, on_delete=models.SET_NULL ) ``` ### 6. Include thorbanks urls ```python urlpatterns = [ # This is where the user will be redirected after returning from the banklink page url(r"^banks/", include("thorbanks.urls")), ] ``` ### 7. Add listeners to banklinks success & failure callbacks: See [example.shop.models.banklink_success_callback](example/shop/models.py#L23) and [example.shop.models.banklink_failed_callback](example/shop/models.py#L44). ### 8. Create views and forms for payments: see [example.shop.views](example/shop/views.py) and [example.shop.forms](example/shop/forms.py). ## iPizza protocol - [Test service](https://banks.pastel.thorgate.eu/et/info) - [Swedbank](https://www.swedbank.ee/business/cash/ecommerce/ecommerce?language=EST) - [Spec](https://www.swedbank.ee/static/pdf/business/d2d/paymentcollection/Pangalingi_paringute_tehniline_spetsifikatsioon_09_10_2014.pdf) - [SEB](https://www.seb.ee/ariklient/igapaevapangandus/maksete-kogumine/maksete-kogumine-internetis/pangalingi-tehniline) - [LHV Bank](https://www.lhv.ee/pangateenused/pangalink/)


نیازمندی

مقدار نام
>=1.11.27 Django
>=2 cryptography


زبان مورد نیاز

مقدار نام
>=3.7,<4.0 Python


نحوه نصب


نصب پکیج whl django-thorbanks-0.6.3:

    pip install django-thorbanks-0.6.3.whl


نصب پکیج tar.gz django-thorbanks-0.6.3:

    pip install django-thorbanks-0.6.3.tar.gz