Skip to main content

A Django app for server side payment verification of Khalti Payment Gateway.

Project description

django-khalti is a Django app based on djangorestframework to conduct server based payment verification of khalti payment gateway. For each payment,it can verify and return status of payment through transaction token and paid amount.

Detailed documentation is in the “docs” directory.

Quick start

  1. Intall the django-khalti and django rest framework like this:

    pip install djangorestframework
    pip install django-khalti
  2. Add “django-khalti” and “djangorestframework “to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'rest_framework',
        'khalti',
    ]
  3. Include the django-khalti URLconf in your project urls.py like this:

    path('khalti/', include('khalti.urls')),
  4. Add Khalti Merchant API key and Verify URL in your settings.py

    KHALTI_SECRET_KEY = "<your api key>"
    KHALTI_VERIFY_URL = "https://khalti.com/api/v2/payment/verify/"

5.Test your endpoints like this:

POST: /khalti/verifypayment/
body:{
    'token':<transaction token>,
    'amount':<transaction amount>
}

6.You will get responses like this:

On Success:
    {
        'status':True,
        'details':{
                      "idx": "8xmeJnNXfoVjCvGcZiiGe7",
                      "type": {
                        "idx": "e476BL6jt9kgagEmsakyTL",
                        "name": "Wallet payment"
                      },
                      "state": {
                        "idx": "DhvMj9hdRufLqkP8ZY4d8g",
                        "name": "Completed",
                        "template": "is complete"
                      },
                      "amount": 1000,
                      "fee_amount": 30,
                      "refunded": false,
                      "created_on": "2018-06-20T14:48:08.867125+05:45",
                      "ebanker": null,
                      "user": {
                        "idx": "cCaPkRPQGn5D8StkiqqMJg",
                        "name": "Test User",
                        "mobile": "98XXXXXXX9"
                      },
                      "merchant": {
                        "idx": "UM75Gm2gWmZvA4TPwkwZye",
                        "name": "Test Merchant",
                        "mobile": "testmerchant@khalti.com"
                      }
                }
    }

On Error:
    {
        'status':False,
        'details':{'token': ['Invalid token.']}
    }

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-khalti-1.0.tar.gz (3.9 kB view details)

Uploaded Source

File details

Details for the file django-khalti-1.0.tar.gz.

File metadata

  • Download URL: django-khalti-1.0.tar.gz
  • Upload date:
  • Size: 3.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for django-khalti-1.0.tar.gz
Algorithm Hash digest
SHA256 428d116d5b18a717b6cc5805f5d3941781d73a252609cbccdbb5097820428578
MD5 001ecadf59c00955efd62102595b4f23
BLAKE2b-256 cdf3061a06997844b087d1e87604c79729a2841442d19e0729f60c8803e8b983

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page