Metadata-Version: 2.1
Name: apollopayment-api
Version: 0.0.5
Summary: SDK for Apollopayment API
Home-page: https://github.com/apollopayment/python_sdk
Author: Apollopayment Team
Author-email: support@apollopayment.io
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/apollopayment/python_sdk/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests >=2.28.0

# Apollopayment Python SDK

### Example

```python
from apollopayment_api import Client

client = Client("<your_public_key>", "<your_private_key>")
result = client.advanced_account.get_advanced_balances()
print(result)  # {"success": True, "response": {...}}
```

### Tests

```shell
pip install -r requirements.txt
python -m pytest tests/*
```


