Metadata-Version: 2.4
Name: paysgator
Version: 0.1.0
Summary: Official Python SDK for Paysgator API
Author-email: Paysgator <info@paysgator.com>
Project-URL: Homepage, https://paysgator.com
Project-URL: Bug Tracker, https://github.com/paysgator/paysgator-python/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.1
Requires-Dist: pydantic>=2.0.0

# Paysgator Python SDK

Official Python client for the Paysgator API.

## Installation

```bash
pip install paysgator
```

## Usage

```python
from paysgator import PaysgatorClient

client = PaysgatorClient(api_key="YOUR_API_KEY", wallet_id="YOUR_WALLET_ID")

# Create a payment link
link = client.payment_links.create(
    title="My Product",
    amount=100.0,
    currency="MZN",
    return_url="https://example.com/callback"
)
print(link.url)
```
