Metadata-Version: 2.1
Name: HormuudEVCPlusMerchant
Version: 1.0.6
Summary: A Python package for interacting with the HormuudEVCPlusMerchant Payment  
Home-page: https://github.com/skydheere/HormuudEVPlusMarchant
Author: Imran Adem
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# HormuudEVCPlusMarchant

HormuudEVCPlusMarchant is a Python package that provides an interface for interacting with the HormuudEVPClusMarchant API. It allows you to perform various operations related to payment processing and transactions.

## Installation

You can install HormuudEVCPlusMarchant using pip:

```shell
pip install HormuudEVPlusMarchant



import HormuudEVCPlusMerchant

# Configure the client with your credentials
merchant_uid = [YOUR MERCHANT-UID]
api_user_id = [YOUR API USERID]
api_key = [YOR API KEY]

# Create an instance of the client
client = HormuudEVCPlusMerchant(merchant_uid, api_user_id, api_key)

# Create payerInfo and transactionInfo objects
payer_info = {
    "accountNo": "25261XXXXXXX"
}

transaction_info = {
    "referenceId": "12345",
    "invoiceId": "IVO001",
    "amount": "1",
    "currency": "USD",
    "description": "descirption "
}

# Make the request with the payerInfo and transactionInfo objects
response = client.make_request(payer_info, transaction_info)

# Process the response
print(response)

 


