Python client for MeSomb services.
Project description
Welcome to pymesomb 👋
Python client for MeSomb Services
You can check the full documentation of the api here
🏠 Homepage
Install
pip3 install pymesomb
Usage
Collect money from an account
from pymesomb.operations import PaymentOperation
from pymesomb.utils import RandomGenerator
from datetime import datetime
operation = PaymentOperation('<application_key>', '<access_key>', '<secret_key>')
response = operation.make_collect({
'amount': 100,
'service': 'MTN',
'payer': '670000000',
'date': datetime.now(),
'nonce': RandomGenerator.nonce(),
'trxID': '1'
})
print(response.is_operation_success())
print(response.is_transaction_success())
Depose money in an account
from pymesomb.operations import PaymentOperation
from pymesomb.utils import RandomGenerator
from datetime import datetime
operation = PaymentOperation('<application_key>', '<access_key>', '<secret_key>')
response = operation.make_deposit({
'amount': 100,
'service': 'MTN',
'receiver': '670000000',
'date': datetime.now(),
'nonce': RandomGenerator.nonce(),
'trxID': '1'
})
print(response.is_operation_success())
print(response.is_transaction_success())
Get application status
from pymesomb.operations import PaymentOperation
operation = PaymentOperation('<application_key>', '<access_key>', '<secret_key>')
response = operation.get_status()
print(response.name)
Get transactions by IDs
from pymesomb.operations import PaymentOperation
operation = PaymentOperation('<application_key>', '<access_key>', '<secret_key>')
response = operation.get_transactions(['ID1', 'ID2'])
print(response)
Author
👤 Hachther LLC contact@hachther.com
- Website: https://www.hachther.com
- Twitter: @hachther
- Github: @hachther
- LinkedIn: @hachther
Show your support
Give a ⭐️ if this project helped you!
1.0.3 (2024-01-24)
- Handle case when trxID is not string
- Fix crash to display response
- Add raw_response in TransactionResponse to store MeSomb response.
1.0.2 (2023-07-25)
=== BREAKING CHANGES ===
Only one parameter is now passed to make_deposit and make_collect. The parameter is a Map that will contain all details of your request.
All method is now returning MeSomb model not dict
1.0.0 (2022-10-20)
First release of the module.
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
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 pymesomb-1.0.3.tar.gz.
File metadata
- Download URL: pymesomb-1.0.3.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1248e7c082fe15f48b25e2b1a66c2ac4a3c93dd326c6326a5acf6954229ffbb8
|
|
| MD5 |
d2ef8abc9a1757616dd77c9cdec1f399
|
|
| BLAKE2b-256 |
a5875aa85ca8732db72408b5203963297964695de62a41f8c2700f69c1673d7e
|
File details
Details for the file pymesomb-1.0.3-py3-none-any.whl.
File metadata
- Download URL: pymesomb-1.0.3-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc3b7342915029374ce907395c9fff30f0f93ffdf6e46e35e0ad91f7d16469da
|
|
| MD5 |
b2ca3f91b2807edab65f1678ba3a4cff
|
|
| BLAKE2b-256 |
cf60b63a98fcdff4428356a968d6de0f62f2a5d54f4e265b8938a60480acbc79
|