Skip to main content

PayU Python SDK

Project description

PayU Python Serverside sdk

Python server side sdk to interact with PayU[^stackedit]. This is primarily for generating hashes at the server to interact with PayU for making transaction.


Installation

$pip install payu_sdk

Usage You need to set up your key and salt values, you can find in your dashboard.

import payu_sdk
client = payu_sdk.payUClient("<key>","<salt>)

Next you have to collect payment params needed to make a payment request e.g.

params = {"txnid":"202005110207","amount":"10","productinfo":"iPhone","firstname":"userFirstName","email":"email@email.com"}

You can also append user defined values to the params in udfs. e.g.

params = {"udf1":"street address","udf2":"city","udf3":"zip","udf4":"country","udf5":"some other value"

Generate Payment Hash To get the payment hash you need to call generate_hash function as follows:

payu_sdk.Hasher.generate_hash(params)

Validate Hash After transaction is made, you need to cross-verify the hash to make sure it was not tempered. So, if the hash generated from validate hash matched the reverse_hash(you get after each transaction) that means transaction was not tempered.

payu_sdk.Hasher.validate_hash(params)

Note: Calculation of reverse hash is mandatory and we recommend this to be calculated after each transaction.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

payu_sdk-1.0.0-py3-none-any.whl (6.8 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