This package provides integration between Django and PayU Payment Gateway.
Install 'django-payu' using the following command:
pip install django-payu
Add "payu" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ .... .... 'payu', ]
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", # And add the PAYU_MODE to 'TEST' for testing and 'LIVE' for production. PAYU_MODE = "TEST"
Finally, run the following command:
python manage.py syncdb