Skip to content

Instantly share code, notes, and snippets.

View Iroiso's full-sized avatar
🎯
Focusing

Iroiso Ikpokonte Iroiso

🎯
Focusing
View GitHub Profile
@Iroiso
Iroiso / PaystackFee.py
Created October 10, 2018 20:36 — forked from ibrahimlawal/PaystackFee.py
Add Paystack fees in Python
import math
class PaystackFee:
"""Work with Paystack's Fees"""
DEFAULT_PERCENTAGE = 0.015
DEFAULT_ADDITIONAL_CHARGE = 10000
DEFAULT_THRESHOLD = 250000
DEFAULT_CAP = 200000
percentage = DEFAULT_PERCENTAGE