Skip to content

MPG (Mastercard Payment Gateway) formerly MIGS python package

License

Notifications You must be signed in to change notification settings

glidematrix/python-mpg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status GitHub Twitter Follow

Python MPG (Mastercard Payment Gateway)

MPG (Mastercard Payment Gateway) formerly MIGS python package to integrate through Virtual Payment Client Integration.

Install

Install with pip:

pip install git+https://[email protected]/glidematrix/python-mpg.git

Initialize

from mpg import Client

merchant_id = 'YOUR MERCHANT ID'
access_code = 'YOUR ACCESS CODE'
secret = 'YOUR SECRET'
currency = 'ZMW' #The currency you want to process


client = Client(
    merchant_id,
    access_code,
    secret,
    currency,
)

2-Party Transactions

payload = {
    'amount': 10,
    'cardnum': '5204740009900014', #Test card number
    'expiry': 2212, #Expiry Year and Month in format 2212
    'csc': 123, #Card Security Code[CVV etc]
}

client.load_card(payload)

res = client.process_card()

print(res)

3-Party Transactions

amount = 10

link = client.payment_link(amount)
print(link)