Skip to main content

A simple library to setup payment integration with CCAvenue

Project description

pay_ccavenue

A simple package to integrate CCAvenue. It can be used for both iframe and seemless methods.

How to install

pip install pay_ccavenue

Import

from pay_ccavenue import CCAvenue

Initialize the Package

We can either setup via the environment or by passing the credentials directly to the plugin.

Via the environment variables

Set the credentials in the environment variables

  • Set CCAVENUE_WORKING_KEY for the WORKING_KEY
  • Set CCAVENUE_ACCESS_CODE for the ACCESS_CODE
  • Set CCAVENUE_MERCHANT_CODE for the MERCHANT_CODE
  • Set CCAVENUE_REDIRECT_URL for the REDIRECT_URL
  • Set CCAVENUE_CANCEL_URL for the CANCEL_URL

And then instantiate the CCAvenue object as shown below

ccavenue = CCAvenue()

Pasing the credentials directly

ccavenue = CCAvenue(WORKING_KEY, ACCESS_CODE, MERCHANT_CODE, REDIRECT_URL, CANCEL_URL)

NOTE

You don't need to explicitely pass WORKING_KEY, ACCESS_CODE, MERCHANT_CODE, REDIRECT_URL, CANCEL_URL in the form data for any of the method i.e. Iframe or seemless.


To encrypt the data

form_data is the post request body which is a dictionary of the related data for the payment. You don't need to pass the Merchant ID though. Since we have already intiated the package with the correct MERCHANT_CODE. encrypt() method return the encrypted string that can be ussed directly in the Iframe rendering.

encrypt_data = ccavenue.encrypt(form_data)

Pass the encrypt_data from the above to the view to render the IFrame.

Decrypt the data received from the CCAvenue

form_data is the post request body which is a dictionary of the related data received from the CCAvenue. The decrypt() method returns the dictionary of the data received from the CCAvenue.

decrypted_data = ccavenue.decrypt(form_data)

Limitations

  1. I have not added any tests as of now in the package, but I have tested this out for my project after debugging their given examples and Stackoverflow to simplify it.
  2. More detailed documentation.

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

pay_ccavenue-0.1.6.tar.gz (4.9 kB view hashes)

Uploaded Source

Built Distribution

pay_ccavenue-0.1.6-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

Supported by

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