Skip to main content

Your project description goes here

Project description

https://img.shields.io/pypi/v/django-payments-przelewy24 https://circleci.com/gh/ar4s/django-payments-przelewy24.svg?style=shield

Your project description goes here

Quickstart

Install django-payments-przelewy24:

pip install django-payments-przelewy24

Add it to your INSTALLED_APPS:

from payments_przelewy24.config import Przelewy24Config

PAYMENT_VARIANTS = {
    "przelewy24": (
        "payments_przelewy24.provider.Przelewy24Provider",
        {
            "config": Przelewy24Config(
                pos_id=123,
                merchant_id=123,
                crc="e34a1",
                api_key="d876a3ba780cb",
                sandbox=True
            ),
        },
    ),
}

You can also use environment to configure provider:

from payments_przelewy24.config import Przelewy24Config

# PAYMENTS_P24_POS_ID=123
# PAYMENTS_P24_MERCHANT_ID=123
# PAYMENTS_P24_CRC=e34a1
# PAYMENTS_P24_API_KEY=d876a3ba780cb
# PAYMENTS_P24_SANDBOX=1

PAYMENT_VARIANTS = {
    "przelewy24": (
        "payments_przelewy24.provider.Przelewy24Provider",
        {
            "config": Przelewy24Config.from_env(),
        },
    ),
}

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install -r requirements_test.txt
(myenv) $ pytest

Development commands

pip install -r requirements_dev.txt
invoke -l

Documentation

  • Przelewy24 REST API

Credits

Tools used in rendering this package:

History

0.1.0 (2021-01-27)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-payments-przelewy24-0.1.7.tar.gz (8.8 kB view hashes)

Uploaded Source

Built Distribution

django_payments_przelewy24-0.1.7-py2.py3-none-any.whl (8.0 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page