https://github.com/feeeek/pyanypay
Wrapper for AnyPay.com API
https://github.com/feeeek/pyanypay
Last synced: about 1 month ago
JSON representation
Wrapper for AnyPay.com API
- Host: GitHub
- URL: https://github.com/feeeek/pyanypay
- Owner: FeeeeK
- License: mit
- Created: 2022-09-10T02:19:40.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-25T22:27:51.000Z (over 1 year ago)
- Last Synced: 2025-03-15T00:48:57.224Z (2 months ago)
- Language: Python
- Homepage:
- Size: 204 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyAnyPay
Little asynchronous wrapper around the [AnyPay API](https://anypay.io/doc/api).
## Installation

```bash
pip install pyanypay
```## Usage
```python
import asyncio
from pyanypay import AnyPayApiapi = AnyPayApi(api_key="API_KEY", api_id=123)
async def main():
# Retrieve balance
response = await api.balance()
print(response.balance) # 123.45asyncio.run(main())
```