Python SDK for maib ecommerce API
Project description
Python SDK for maib ecommerce API
maib e-commerce API docs: https://docs.maibmerchants.md
Installation
To easily install or upgrade to the latest release, use pip.
pip install --upgrade maib-ecommerce-sdk
Getting started
Import SDK:
from maib_ecommerce_sdk import MaibAuthRequest, MaibApiRequest
Add project configuration:
import os
MAIB_PROJECT_ID = os.getenv('MAIB_PROJECT_ID')
MAIB_PROJECT_SECRET = os.getenv('MAIB_PROJECT_SECRET')
MAIB_SIGNATURE_KEY = os.getenv('MAIB_SIGNATURE_KEY')
SDK usage examples
Get Access Token with Project ID and Project Secret
maib_auth = MaibAuthRequest.create().generate_token(MAIB_PROJECT_ID, MAIB_PROJECT_SECRET)
maib_token = maib_auth['accessToken']
maib_refresh_token = maib_auth['refreshToken']
Get Access Token with Refresh Token
maib_auth = MaibAuthRequest.create().generate_token(maib_refresh_token)
maib_token = maib_auth['accessToken']
maib_refresh_token = maib_auth['refreshToken']
Direct Payment
# Set up required payment parameters
maib_pay_data = {
'amount': 10.25,
'currency': 'EUR',
'clientIp': '127.0.0.1'
}
# Initiate Direct Payment
maib_pay = MaibApiRequest.create().pay(maib_pay_data, maib_token)
maib_pay_url = maib_pay['payUrl']
maib_pay_id = maib_pay['payId']
For more examples see PHP SDK for maib ecommerce API
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
maib_ecommerce_sdk-1.0.1.tar.gz
(19.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file maib_ecommerce_sdk-1.0.1.tar.gz.
File metadata
- Download URL: maib_ecommerce_sdk-1.0.1.tar.gz
- Upload date:
- Size: 19.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
511be217d0bf49939bc4372281053d8095765ed3e265a6259605f7d7a8e2fa96
|
|
| MD5 |
460ee61c44f411012a02b99ff3e6e201
|
|
| BLAKE2b-256 |
56e858c59d7c8c89630ddde6f48e7997ebcccfd16a690a6f3fb8af409532766d
|
File details
Details for the file maib_ecommerce_sdk-1.0.1-py3-none-any.whl.
File metadata
- Download URL: maib_ecommerce_sdk-1.0.1-py3-none-any.whl
- Upload date:
- Size: 19.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a24e2cd8f115a47e21df3a5ee6612e44156879cf430508e4ca070e345316da2f
|
|
| MD5 |
8d07d673de7a6611f65471519a25fc1a
|
|
| BLAKE2b-256 |
5353a5d2257d939d29b80b89191e40dd241abb9ff7050fe06d3df6a5df31da31
|