Welcome to django_payu’s documentation!

This package provides integration between Django and PayU Payment Gateway.

Installation

Install:

pip install django-payu

Next, add payu to your INSTALLED_APPS setting like this:

INSTALLED_APPS = [
    ....
    ....
    'payu',
]

Then, add the following settings in the setting file using the details from your PayU account:

PAYU_MERCHANT_KEY = "Your MerchantID",

PAYU_MERCHANT_SALT = "Your MerchantSALT",

# Change the PAYU_MODE to 'LIVE' for production.
PAYU_MODE = "TEST"

Finally, run the following commands:

python manage.py migrate

Contents:

Indices and tables