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.4.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.4.tar.gz.
File metadata
- Download URL: maib_ecommerce_sdk-1.0.4.tar.gz
- Upload date:
- Size: 19.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cf9131f751f5c0c0ba151e927677239827ccdf2b56729101a903c8b1189906a
|
|
| MD5 |
92ee66210821270858cd37dfeca66238
|
|
| BLAKE2b-256 |
6ae42577483025e2df3a5528777d1f79a79a60ac9089b66642e3b8ac2aac6d97
|
File details
Details for the file maib_ecommerce_sdk-1.0.4-py3-none-any.whl.
File metadata
- Download URL: maib_ecommerce_sdk-1.0.4-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.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7aad406a5dbe9941314c9306acc597a67b5b37cd3f8b1672cb92eb039319cd0f
|
|
| MD5 |
907a750399ced8b3f1bf0e6840f1fdd8
|
|
| BLAKE2b-256 |
d1e976c360e9d49f44c5dd7d135d7457d4da47ab95e5c844ba623e6478c34cab
|