Metadata-Version: 2.4
Name: modempay
Version: 1.0.1
Summary: A Python SDK for integrating with the Modem Pay payment gateway, enabling seamless payment processing and financial services in your applications.
Home-page: https://modempay.com
Author: Caleb Okpara
Author-email: info@modempay.com
Project-URL: Documentation, https://docs.modempay.com
Keywords: payment gateway modem pay fintech api sdk
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Modem Pay Python SDK

The official Python SDK for integrating Modem Pay's payment services.

## Installation

Install the SDK using npm:

```bash
pip install modempay
```

## Quickstart

Initialize the SDK and authenticate with your API key:

```python
from modempay import ModemPay

modem_pay = ModemPay(
    api_key="your_api_key"
)

# Example: Create a payment intent
payment_intent = modem_pay.payment_intents.create(
    params={"amount": 1000, "currency": "GMD", "customer": "customer_id"}
)

print(payment_intent)
```

## Documentation

For detailed usage, visit the [Modem Pay Docs](https://docs.modempay.com).
