Giter VIP home page Giter VIP logo

azampay's Introduction

Python Wrapper to Azampay Payment Gateway

Downloads Downloads Downloads

Azampay API Flow

All Azampay APIs follow two step process:

Step 1: Get token against the application authentication credentials. Step 2: Consume the actual api by providing x-api-key header and token acquired in step 1. Following diagram shows the general flow on how to consume the Azampay api.

Azam Pay

Getting Started

To get started with Azampay, you need to install the azampay package. You can either do it manually or use pip to install it.

Manual Installation

$ git clone https://github.com/Neurotech-HQ/azampay
$ cd azampay
$ sudo python setup.py install

Using pip

$ pip install azampay

Authentication

Azampay offers two forms of authentication:

API Key

Bearer Auth - an open protocol to allow secure authorization in a simple and standard method from web, mobile and desktop applications. API-Key is the key that is provided in the http request header. Key Name is X-API-KEY.

Bearer Token is the JWT token that you get against your application Name, Client Id and Client Secret. For Sanbox Environment, You can get these application credentials from Sandbox portal. For production environment, you will be provided these keys after you submit your business KYC to Azampay from Sandbox portal.

Azampay Package handles the authentication for you. You just need to provide it with its credentials and it will do the rest. Here is the example of how to use it.

>>> from azampay import Azampay
>>> azampay = Azampay(app_name='<app_name'>, client_id='<client_id>', client_secret='<client_secret>', x_api_key='<x_api_key>', sandbox=True)

Note: When you want to use the package in production environment, No need to specify the X-API-Key.

>>> from azampay import Azampay
>>> azampay = Azampay(app_name='<app_name>', client_id='<client_id>', client_secret='<client_secret>', sandbox=False)

Checkout

Azampay offers two types of checkout:

  1. Mobile Checkout - for mobile checkout (Tigopesa, AirtelMoney, Mpesa)
  2. Bank Checkout - for bank checkout (CRDB, NMB)

Mobile Checkout

Here is the example of how to use the mobile checkout.

>>> from azampay import Azampay
>>> azampay = Azampay(app_name='<app_name>', client_id='<client_id>', client_secret='<client_secret>', x_api_key='<x_api_key>', sandbox=True)
>>> checkout_response = azampay.mobile_checkout(amount=100, mobile='<mobile>', external_id='<external_id>', provider='<provider>')

Bank Checkout

Here is the example of how to use the bank checkout.

>>> from azampay import Azampay
>>> azampay = Azampay(app_name='<app_name>', client_id='<client_id>', client_secret='<client_secret>', x_api_key='<x_api_key>', sandbox=True)
>>> checkout_response = azampay.bank_checkout(amount=100, merchant_account_number='<merchant_account_number>', merchant_mobile_number='<merchant_mobile_number>', reference_id='<external_id>', provider='<provider>')

Generate Payment Link

Here is the example of how to use the generate payment link.

>>> from azampay import Azampay
>>> azampay = Azampay(
...     app_name='<app_name>',
...     client_id='<client_id>',
...     client_secret='<client_secret>',
...     x_api_key='<x_api_key>',
...     sandbox=True
)
>>> payment_link = azampay.generate_payment_link(
    amount='<amount>', external_id='<external_id>', provider='<provider>'
)
>>> payment_link = azampay.generate_payment_link(
    amount='5000', external_id='12345343', provider='Airtel'
)['data']

Callback

Now that you already know to initiate payments with Azampay package, Let's get started with the callback.

Note: You will need to have a webhook endpoint set up on your application to receive the callback from Azampay.

I have added a starter FastAPI webhook endpoint to this repository. You can either use it or set up your own.

Webhook Data

Here an example of the webhook data that you will receive from Azampay.

{
    "msisdn": "0178823",
    "amount": "2000",
    "message": "any message",
    "utilityref": "1292-123",
    "operator": "Tigo",
    "reference": "123-123",
    "transactionstatus": "success",
    "submerchantAcc": "01723113",
}

Issues

If you will face any issue with the usage of this package please raise one so as we can quickly fix it as soon as possible;

Contributing

This is an opensource project under MIT License so any one is welcome to contribute from typo, to source code to documentation, JUST FORK IT.

Related

  1. Python-DPO
  2. Pypesa
  3. Tigopesa

All the credit

  1. kalebu
  2. All other contributors

azampay's People

Contributors

kalebu avatar maen08 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.