Python package used to integrate telebirr web API
Project description
telebirrweb
Python package used to integrating telebirr web API with your project.
import os
from dotenv import load_dotenv
from telebirrweb import TelebirrWeb
from utils import generate_unique
load_dotenv()
telebirrAppID = os.environ.get("TelebirrAppID")
telebirrAppKey = os.environ.get("TelebirrAppKey")
telebirrShortCode = os.environ.get("TelebirrShortCode")
telebirrPublicKey = os.environ.get("TelebirrPublicKey")
receiveName = "Test"
tele = TelebirrWeb(telebirrAppID, telebirrAppKey, telebirrShortCode, telebirrPublicKey, receiveName)
subject = "Payment"
totalAmount = 10
nonce = generate_unique([], 32)
outTradeNo = generate_unique([], 32)
notifyUrl = "https://example.com/"
returnUrl = "https://example.com/"
response = tele.send_request(subject, totalAmount, nonce, outTradeNo, notifyUrl, returnUrl)
print(response)
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
telebirrweb-1.0.1.tar.gz
(4.5 kB
view details)
File details
Details for the file telebirrweb-1.0.1.tar.gz
.
File metadata
- Download URL: telebirrweb-1.0.1.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da49d4141002825dbd3600b71596c815f91a1fc8951964c241714d963cba5fb7 |
|
MD5 | 4dc468c0661c46f9e8deb911c394ec94 |
|
BLAKE2b-256 | 848dc8d0b0dda5055fb37b1263943a72ce8153bbdf3960cfa412bc1920d2bd6e |