Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MicroPyramid/django-payu
payu payment gateway integration for django projects
https://github.com/MicroPyramid/django-payu
django package payu pip
Last synced: 6 days ago
JSON representation
payu payment gateway integration for django projects
- Host: GitHub
- URL: https://github.com/MicroPyramid/django-payu
- Owner: MicroPyramid
- License: mit
- Created: 2015-08-21T09:02:50.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-02-02T06:24:29.000Z (almost 3 years ago)
- Last Synced: 2024-08-16T10:09:37.824Z (3 months ago)
- Topics: django, package, payu, pip
- Language: Python
- Homepage:
- Size: 44.9 KB
- Stars: 41
- Watchers: 14
- Forks: 35
- Open Issues: 5
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-django - django-payu - A Django app that provides integration between Django and PayU Payment Gateway. (Payment Processing)
README
Django-PayU
==============
.. image:: http://travis-ci.org/MicroPyramid/django-payu.svg?branch=master
:target: http://travis-ci.org/MicroPyramid/django-payu
.. image:: https://coveralls.io/repos/github/MicroPyramid/django-payu/badge.svg?branch=master
:target: https://coveralls.io/github/MicroPyramid/django-payu?branch=master
.. image:: https://img.shields.io/github/license/micropyramid/django-payu.svg
:target: https://pypi.python.org/pypi/django-payu/
.. image:: https://landscape.io/github/MicroPyramid/django-payu/master/landscape.svg?style=flat
:target: https://landscape.io/github/MicroPyramid/django-payu/master
:alt: Code HealthThis package provides integration between `Django` and `PayU Payment Gateway`.
Quick start
------------1. Install 'django-payu' using the following command::
pip install django-payu
2. Add "payu" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [
....
....
'payu',
]3. 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"4. Finally, run the following commands::
python manage.py migrate
5. Run the tests::
python test_runner.py test -v 2
Visit our Django E-commerce Development page `Here`_
For additional help you can `Contact us here`_
.. _contact us here: https://micropyramid.com/contact-us/
.. _Here: https://micropyramid.com/django-ecommerce-development/