Skip to main content

Implements SSLCOMMERZ payment gateway in python based web apps.

Project description

SSLCOMMERZ Payment Gateway Python API

Downloads

Provides a python module to implement payment gateway in python based web apps.

Installation

Via PIP

pip install sslcommerz-python-api

or via git

pip install git+https://github.com/dreygur/SSLCommerz-Python.git

Projected use

#!usr/bin/env python

from decimal import Decimal
from sslcommerz_python_api import SSLCSession

mypayment = SSLCSession(
  sslc_is_sandbox=True,
  sslc_store_id='your_sslc_store_id',
  sslc_store_pass='your_sslc_store_passcode'
)

mypayment.set_urls(
  success_url='example.com/success',
  fail_url='example.com/failed',
  cancel_url='example.com/cancel',
  ipn_url='example.com/payment_notification'
)

mypayment.set_product_integration(
  total_amount=Decimal('20.20'),
  currency='BDT',
  product_category='clothing',
  product_name='demo-product',
  num_of_item=2,
  shipping_method='YES',
  product_profile='None'
)

mypayment.set_customer_info(
  name='John Doe',
  email='johndoe@email.com',
  address1='demo address',
  address2='demo address 2',
  city='Dhaka', postcode='1207',
  country='Bangladesh',
  phone='01711111111'
)

mypayment.set_shipping_info(
  shipping_to='demo customer',
  address='demo address',
  city='Dhaka',
  postcode='1209',
  country='Bangladesh'
)

# If you want to post some additional values
mypayment.set_additional_values(
  value_a='cusotmer@email.com',
  value_b='portalcustomerid',
  value_c='1234',
  value_d='uuid'
)

response_data = mypayment.init_payment()

# You can Print the response data
print(response_data)

Response parameters

When Successfull with Auth and Payloads provided

  • status
  • sessionkey
  • GatewayPageURL

Example

{'status': 'SUCCESS', 'sessionkey': 'F650E87F23DD2A8FFCB4E4E333C13B28', 'GatewayPageURL': 'https://sandbox.sslcommerz.com/EasyCheckOut/testcdef650e87f23dd2a8ffcb4234fasf3b28'}

or

>>> response_data['status']
SUCCESS
>>> response_data['sessionkey']
F650E87F23DD2A8FFCB4E4E333C13B28
>>> response_data['GatewayPageURL']
https://sandbox.sslcommerz.com/EasyCheckOut/testcdef650e87f23dd2a8ffcb4234fasf3b28

When Failed

  • status
  • failedreason

Example

{'status': 'FAILED', 'failedreason': 'Store Credential Error Or Store is De-active'}

or

>>> response_data['status']
FAILED
>>> response_data['failedreason']
'Store Credential Error Or Store is De-active'

Acknowledgemetns

It's a fork of Shahed Mehbub's sslcommerz-python

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

sslcommerz_python_api-1.0.1.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sslcommerz_python_api-1.0.1-py3-none-any.whl (6.7 kB view details)

Uploaded Python 3

File details

Details for the file sslcommerz_python_api-1.0.1.tar.gz.

File metadata

  • Download URL: sslcommerz_python_api-1.0.1.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.6

File hashes

Hashes for sslcommerz_python_api-1.0.1.tar.gz
Algorithm Hash digest
SHA256 9bb0cff60f1fd6f8e836c72e2f2c2c4c8549468bb2d8381d3beb44e69fbebe78
MD5 308089801cd809a6a29e923a81de050f
BLAKE2b-256 20eae716068b659c6c1b4bf994f1ded33f664eb9884f1156261fcf46ce6ad3fd

See more details on using hashes here.

File details

Details for the file sslcommerz_python_api-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for sslcommerz_python_api-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a60d51b824d3cbd0571585054ad8d21fee03e009335241c71d3a17dcbc3aaa58
MD5 8b3d0b5ff3d5a1d1e7a237360dc7ae30
BLAKE2b-256 2f5c63dc72b178e6aea76cadea18f258f8dbc2b3a028cb2d642df0759147eb93

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