Skip to main content

A Python library for easy integration with Nepali payment gateways like eSewa, khalti(coming soon).

Project description

Nepal Gateways 🇳🇵

PyPI version Python Version License

A Python library providing a unified interface for integrating various Nepali payment gateways and digital wallets into your Python applications.

Overview

Integrating multiple payment gateways can be complex due to differing APIs, authentication mechanisms, and response formats. nepal-gateways aims to simplify this by offering:

  • A consistent API structure for common operations like payment initiation and verification across different gateways.
  • Clear error handling with custom exceptions.
  • Type-hinted and well-documented code.

Supported Gateways

Currently, the following gateways are supported:

  • eSewa (ePay v2 - with HMAC Signature)
  • Khalti (Coming Soon)
  • (Other gateways will be added based on demand and API availability)

Installation

You can install nepal-gateways using pip:

pip install nepal-gateways

The library requires the requests package for making HTTP calls, which will be installed automatically as a dependency.

Quick Start - eSewa Example

Here's a brief example of how to use the EsewaClient. For full details, please see the eSewa Client Documentation.

1. Configuration & Initialization:

from nepal_gateways import EsewaClient, ConfigurationError
from typing import Union # For Amount type alias if used in example

# Define type alias for clarity
Amount = Union[int, float]
OrderID = str

# For Sandbox/UAT
esewa_sandbox_config = {
    "product_code": "EPAYTEST",  # Your sandbox merchant code from eSewa
    "secret_key": "8gBm/:&EnhH.1/q", # eSewa's official UAT secret key
    "success_url": "https://yourdomain.com/payment/esewa/success",
    "failure_url": "https://yourdomain.com/payment/esewa/failure",
    "mode": "sandbox"
}

try:
    client = EsewaClient(config=esewa_sandbox_config)
except ConfigurationError as e:
    print(f"Configuration Error: {e}")
    # Handle error

2. Initiating a Payment:

from nepal_gateways import InitiationError

merchant_order_id: OrderID = "MYORDER-001"
payment_amount: Amount = 100 # Total amount for the order

try:
    # For eSewa, 'amount' is the base, other charges are separate parameters
    # Total amount for signature will be amount + tax_amount + product_service_charge + product_delivery_charge
    init_response = client.initiate_payment(
        amount=payment_amount, # Base amount
        order_id=merchant_order_id,
        tax_amount=0,           # Example: 0 tax
        product_service_charge=0, # Example: 0 service charge
        product_delivery_charge=0 # Example: 0 delivery charge
    )

    if init_response.is_redirect_required:
        print(f"Redirect User to: {init_response.redirect_url}")
        print(f"With Method: {init_response.redirect_method}") # Should be POST
        print(f"And Form Fields: {init_response.form_fields}")
        # In a web app, render an HTML form that auto-submits these fields.
except InitiationError as e:
    print(f"Initiation Failed: {e}")

3. Verifying a Payment (in your callback handler):

eSewa will redirect the user to your success_url or failure_url with a data query parameter containing a Base64 encoded JSON string.

from nepal_gateways import VerificationError, InvalidSignatureError

# Example: In a Flask route handling the callback
# @app.route('/payment/esewa/success', methods=['GET'])
# def esewa_callback_handler():
#     request_data = request.args.to_dict() # e.g., {"data": "BASE64_STRING_FROM_ESEWA"}

# For this standalone example, let's assume request_data is populated:
# Replace with actual data from a test transaction
# This is what your web framework's request object would give you
# For a GET callback: request_data = {"data": "ACTUAL_BASE64_ENCODED_STRING_FROM_ESEWA_CALLBACK"}
# For a POST callback (if eSewa POSTs JSON): request_data = ACTUAL_PARSED_JSON_OBJECT_FROM_ESEWA

# Placeholder for example - replace with real callback data for testing
request_data_from_esewa_callback = {"data": "GET_THIS_FROM_A_REAL_SANDBOX_TRANSACTION_CALLBACK"}

try:
    verification = client.verify_payment(
        transaction_data_from_callback=request_data_from_esewa_callback
    )

    if verification.is_successful:
        print(f"Payment Verified for Order ID: {verification.order_id}, eSewa Txn ID: {verification.transaction_id}")
        # Update your database, fulfill order
    else:
        print(f"Payment Not Verified or Failed for Order ID: {verification.order_id}. Status: {verification.status_code}")
        # Check verification.status_message and verification.raw_response for details

except InvalidSignatureError:
    print("CRITICAL: Callback signature is invalid! Do not trust this transaction.")
except VerificationError as e:
    print(f"Verification process error: {e}")
except Exception as e:
    print(f"Unexpected error during verification: {e}")

For more detailed information on using the EsewaClient, including all configuration options and error handling, please refer to the eSewa Client Documentation.

Logging

This library uses Python's standard logging module. All loggers within this package are children of the nepal_gateways logger.

To enable logging (e.g., for debugging), configure the nepal_gateways logger in your application:

import logging

# Simplest configuration to see debug messages on console
logging.basicConfig(level=logging.DEBUG)

# Or, more specific configuration:
logger = logging.getLogger('nepal_gateways')
logger.setLevel(logging.DEBUG)
# Add your desired handlers
# stream_handler = logging.StreamHandler()
# logger.addHandler(stream_handler)

The library itself does not add any handlers by default (except a NullHandler to prevent "No handler found" warnings if the application has not configured logging).

Contributing

Contributions are welcome! If you'd like to add support for a new gateway, improve existing ones, or fix bugs, please feel free to:

  1. Fork the repository.
  2. Create a new branch for your feature or fix.
  3. Write tests for your changes.
  4. Submit a pull request.

Please ensure your code adheres to basic linting standards (e.g., ruff, black) and that all tests pass.

(More details can be added to a CONTRIBUTING.md file later.)

License

This project is licensed under the MIT License - see the LICENSE file for details.

Disclaimer

This is an unofficial library. While efforts are made to ensure correctness and security, always perform thorough testing, especially with live credentials and real transactions. The maintainers are not responsible for any financial loss or issues arising from the use of this software. Always refer to the official documentation of the respective payment gateways.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nepal_gateways-0.1.0.tar.gz (66.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nepal_gateways-0.1.0-py3-none-any.whl (19.6 kB view details)

Uploaded Python 3

File details

Details for the file nepal_gateways-0.1.0.tar.gz.

File metadata

  • Download URL: nepal_gateways-0.1.0.tar.gz
  • Upload date:
  • Size: 66.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for nepal_gateways-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f153018c86fac2d23d6e348a56d35790f55564703343a504a8bbef5d6e00375c
MD5 b8a6f1ed8147a1615154715562b94617
BLAKE2b-256 1559ec4a7be14dc78d1a04b13f9d3cb5b7f110e503ce6e40f74a1e51f5ed291b

See more details on using hashes here.

File details

Details for the file nepal_gateways-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: nepal_gateways-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 19.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for nepal_gateways-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2b2352dd9cd384347415c662adfad97264ceacfc582feb86a73fba6d242a339b
MD5 157bec5bbaf2c4f504f4cf370f851796
BLAKE2b-256 96ebe39a479f2d8a625b0b4373f0d11a23500a7eaaff02829dfd4d4371869a84

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page