Skip to main content

A simple Django app for easy payment via pay.ir .

Project description

Django payment module for Pay.ir

Installation

First install package.

pip install django-payment-payir

Add 'pay_ir' to your INSTALLED_APPS setting.

INSTALLED_APPS = (
    ...
    'pay_ir',
)

And add PAY_IR_CONFIG in to setting file.

PAY_IR_CONFIG = {
    "api_key": "YOUR_API_KEY"
}

For test without api key enter a test as api key.

Add the following to your root urls.py file.

urlpatterns = [
    ...
    url(r'^payment/', include('pay_ir.urls'))
]

Note that the URL path can be whatever you want.

Run python manage.py migrate to create the payments models.

Tested on

  • Python (3.6.6)
  • Django (2.1)
  • requests (2.19.1)

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-payment-payir-0.2.tar.gz (8.5 kB view hashes)

Uploaded Source

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