All Projects → MicroPyramid → django-payu

MicroPyramid / django-payu

Licence: MIT license
payu payment gateway integration for django projects

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to django-payu

Rules python
Experimental Bazel Python Rules
Stars: ✭ 233 (+529.73%)
Mutual labels:  pip
pmm
PyPi Mirror Manager
Stars: ✭ 29 (-21.62%)
Mutual labels:  pip
wi
Installer for Python Wheels
Stars: ✭ 17 (-54.05%)
Mutual labels:  pip
Advanced Video
Stars: ✭ 240 (+548.65%)
Mutual labels:  pip
PIP-Module-Scanner
Scans your Python project for all installed third party pip libraries that are used and generates a requirements.txt file based on it
Stars: ✭ 19 (-48.65%)
Mutual labels:  pip
SolPipLog
Logger for the PIP Inverter series ( USB / RS232 version )
Stars: ✭ 72 (+94.59%)
Mutual labels:  pip
Miscnn
A framework for Medical Image Segmentation with Convolutional Neural Networks and Deep Learning
Stars: ✭ 194 (+424.32%)
Mutual labels:  pip
ios2androidres
Copy iOS image resources to their appropriate Android directory
Stars: ✭ 20 (-45.95%)
Mutual labels:  pip
TensorFlow-Raspberry-Pi
TensorFlow installation wheels for Raspberry Pi 32-bit OS
Stars: ✭ 18 (-51.35%)
Mutual labels:  pip
symmetric
A powerful tool to enable super fast module-to-API transformations. Learn in minutes, implement in seconds. Batteries included.
Stars: ✭ 65 (+75.68%)
Mutual labels:  pip
Best Of Python Dev
🏆 A ranked list of awesome python developer tools and libraries. Updated weekly.
Stars: ✭ 243 (+556.76%)
Mutual labels:  pip
PyGLM
Fast OpenGL Mathematics (GLM) for Python
Stars: ✭ 167 (+351.35%)
Mutual labels:  pip
pip-custom-platform
pip+wheel wrapper which allows you to choose a custom platform name for building, downloading, and installing wheels.
Stars: ✭ 50 (+35.14%)
Mutual labels:  pip
Mercury
Mercury is a hacking tool used to collect information and use the information to further hurt the target
Stars: ✭ 236 (+537.84%)
Mutual labels:  pip
no-manylinux
Install this package to disable manylinux wheels when dowloading from pip.
Stars: ✭ 23 (-37.84%)
Mutual labels:  pip
Biliutil
Bilibili.com视频批量下载工具包
Stars: ✭ 212 (+472.97%)
Mutual labels:  pip
MacOS-All-In-One-Update-Script
Mac update shell script (Appstore, macOS, Homebrew and others)
Stars: ✭ 39 (+5.41%)
Mutual labels:  pip
pypi-simple
PyPI Simple Repository API client library
Stars: ✭ 21 (-43.24%)
Mutual labels:  pip
paywix
Paywix is a lightweight SDK for payment processing for the python based applications, the package was initially supported only with the Django framework. In the new version, the package is supported by all python-based applications., this package include PayU, cashfree, JustPay, PayTM, BrainTree, Strip , PayPal "
Stars: ✭ 15 (-59.46%)
Mutual labels:  payu
pip-audit
Audits Python environments and dependency trees for known vulnerabilities
Stars: ✭ 735 (+1886.49%)
Mutual labels:  pip

Django-PayU

http://travis-ci.org/MicroPyramid/django-payu.svg?branch=master https://coveralls.io/repos/github/MicroPyramid/django-payu/badge.svg?branch=master Code Health

This 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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].