Metadata-Version: 2.4
Name: acrossed-billing
Version: 1.0.0
Summary: Official Python SDK for Acrossed Billing API
Project-URL: Homepage, https://acrossed.io
Project-URL: Repository, https://github.com/acrossed/billing
Author: Acrossed
License: MIT
Keywords: acrossed,bangladesh,billing,paystation
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Description-Content-Type: text/markdown

# acrossed-billing

Official Python SDK for Acrossed Billing.

## Install

```bash
pip install acrossed-billing
```

## Quick start

```python
from acrossed_billing import AcrossedBilling

client = AcrossedBilling(
    base_url="https://api.acrossed.io",
    api_key="acx_your_key_here",
)

merchant = client.merchant_me()
links = client.list_payment_links()
```

## Automated releases

PyPI publishes are automated from GitHub Releases when `PYPI_API_TOKEN` is configured in repository secrets.
