Skip to content
View Eyuel01's full-sized avatar

Block or report Eyuel01

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Eyuel01/README.md

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)

@Eyuel01's activity is private