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.3.tar.gz
(19.2 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.3.tar.gz.
File metadata
- Download URL: maib_ecommerce_sdk-1.0.3.tar.gz
- Upload date:
- Size: 19.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dea19547d3f8d7fbfd920d7ea8a9b428851920c40457ed60aca83b60e0e75944
|
|
| MD5 |
b35c71717c463be1c612a1c2c03bc022
|
|
| BLAKE2b-256 |
d5cacdad749a6e13b13e9c7faa82e60d3ba10b3894f241876122593b70ffee5c
|
File details
Details for the file maib_ecommerce_sdk-1.0.3-py3-none-any.whl.
File metadata
- Download URL: maib_ecommerce_sdk-1.0.3-py3-none-any.whl
- Upload date:
- Size: 19.8 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 |
dfc8158f8f0c4aaf8add022a9b6ae0d46d2925777f10dda1c5c76d32765570be
|
|
| MD5 |
9bd5731314a9dba40795cc795f22b19e
|
|
| BLAKE2b-256 |
25fb23c2e9ecbfc9f3aef19fd15d04993299b5baa83c01db502c97a9fb2bde66
|