bSecure is a Universal Checkout for Pakistan (Alpha Release)
Project description
bSecure
bSecure is a Universal Checkout solution for Ecommerce in Pakistan. This plugin allows you to integrate bSecure with your Python Application. It is developed with simplicity in mind.
Here is how it works:
1: Install using pip
pip install bsecure
2: import the package
import bSecure as bsecure
3: authenticate yourself application with bsecure server:
bsecure.authenticate(client_id, client_secret)
client_id and client_secret can be optained from bsecure admin panel for your application This is time limited activation, and must be considered to implement in a way that traffic may not disrupt your application.
4: setup order in bsecure acceptable format.
order_details = { "discount_amount": 0, "sub_total_amount": 300.78, "total_amount": 300.78, "currency_code": "PKR", "order_id": "order-id-in-your-system-0001", "customer": { "name": "your customer name", "email": "your.customer.email@yourapplication.com", "country_code": "92", "phone_number": "345-6789012" }, "products": { "0": { "id": "product-id-in-your-system-0001",, "name": "BAZIC Asst. Size Paint Brush Set (15/Pack)", "sku": "product-sku-in-your-system-123", "quantity": 1, "price": 25.5, "sale_price": 35.5, "image": "https://sc01.alicdn.com/kf/UT8ChMOXjBbXXagOFbXU.jpg", "description": "product headline/short description", "short_description": "Detailed description for product. Here you will share all that you know about the product." } } }
Dictionary format shared above is necessary. It should be in that format for your payment gateway to be activated and your order to be created.
After you have created the dictionary in above mentioned format, call:
bsecure.set_order(order_details)
Above bsecure.set_order(order_details) should always be called if you want to
5: Create order.
bsecure.created_order()
You do not have to do anything extra here. But remember, to created each different order, you must call bsecure. set_order (order_details)
6: Update order
bsecure.update_order()
Be sure to call bsecure.set_order(order_details) before you try this.
We also support Single Sign On Feature for your application
Here is what you have to do:
1: setup data as below:
sso_data = { "client_id": "<your client_id for bsecure>", "scope": "profile", "response_type": "code", "state": "string" }
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for bSecure-0.0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f82735b0008eba89658084a1810a0f6868ff10bc00a09a6f11d23ebd73cc654f |
|
MD5 | e69298563d603ff9b8d122272c47ae66 |
|
BLAKE2b-256 | e1a90671fb08f169d4427472eaac9ffd0beba729a8ebee3756e372da78087d67 |