Official shurjoPay python package (plugin) for merchants or service providers to connect with shurjoPay Payment Gateway v2.1 developed and maintained by shurjoMukhi Limited.
This plugin package can be used with any python application or framework (e.g. django, flask, FastAPI etc.).
This plugin package makes it easy for you to integrate with shurjoPay v2.1 with just three method calls:
- make_payment()
- verify_payment()
- check_payment()
Also reduces many of the things that you had to do manually
- Handles http request and errors
- JSON serialization and deserialization
- Authentication during checkout and verification of payments
This document is intended for the developers and technical personnel of merchants and service providers who want to integrate the shurjoPay online payment gateway using python.
pip install shurjopay-plugin
SP_USERNAME=sp_sandbox
SP_PASSWORD=pyyk97hu&6u6
SP_ENDPOINT=https://sandbox.shurjopayment.com
SP_RETURN=https://localhost:8000/return
SP_CANCEL=https://localhost:8000/cancel
SP_LOGDIR=/var/log/shurjopay.log
SP_PREFIX=sp-plugin-python
After that, you can initiate payment request to shurjoPay using our package the way you want based on your application. Here we are providing a basic example code snippet for you.
import environ
from shurjopay_plugin import *
env = environ.Env()
environ.Env.read_env('.env')
sp_config = ShurjoPayConfigModel(
SP_USERNAME=env('SP_USERNAME'),
SP_PASSWORD=env('SP_PASSWORD'),
SP_ENDPOINT=env('SP_ENDPOINT'),
SP_RETURN=env('SP_RETURN'),
SP_CANCEL=env('SP_CANCEL'),
SP_PREFIX=env('SP_PREFIX'),
SP_LOGDIR=env('SP_LOGDIR')
)
shurjopay_plugin = ShurjopayPlugin(sp_config)
payment_request = PaymentRequestModel(
amount=1000,
order_id='001',
currency='BDT',
customer_name='Mahabubul Hasan',
customer_address='Mohakhali',
customer_phone='01311310975',
customer_city='Dhaka',
customer_post_code='1229',
)
payment_details = shurjopay_plugin.make_payment(payment_request)
shurjopay_plugin.verify_payment(order_id)
That's all! Now you are ready to use the python plugin to seamlessly integrate with shurjoPay to make your payment system easy and smooth.
- Django example application showing usage of the python plugin.
- Sample applications and projects in many different languages and frameworks showing shurjopay integration.
- shurjoPay Postman site illustrating the request and response flow using the sandbox system.
- shurjopay Plugins home page on github
This code is under the MIT open source License.