Python implementation of OxaPay (https://oxapay.com) pubilc API
Project description
pyOxaPayAPI
Python implementation of OxaPay pubilc API
This library is based on oxapay_api implementation. Was forked here due to slow PR acceptance.
This library is ACTUAL and is supported. If you need some not implemented methods - just open an issue.
Installation
Installation using pip (a Python package manager):
$ pip install pyOxaPayAPI
Usage
Everything is as simple as the API itself.
- Create pyOxaPayAPI instance
- Access API methods in pythonic notation (e.g. "Creating an invoice" -> create_invoice())
- Most methods return result as correspondent class, so you can access data as fields
from pyOxaPayAPI import pyOxaPayAPI
client = pyOxaPayAPI(
"xxxxxxx", # Merchand API key
general_api_key="xxxxxxx", # General API key (for account methods like "balance")
payout_api_key="xxxxxxx") # Payout API key (for payout methods)
balances = client.account_balance(currency=currency.name)
for currency, balance in balances["data"].items():
print("Merchant balance: {} {}".format(balance, currency))
You can also check tests.py.
Exceptions
Exceptions are rised using pyOxaPayAPIException class.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyoxapayapi-0.2.0.tar.gz
(9.7 kB
view details)
File details
Details for the file pyoxapayapi-0.2.0.tar.gz.
File metadata
- Download URL: pyoxapayapi-0.2.0.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77ddc6010bbee470fbb0104fb0ab51f3fbde70f224baae328ad863b7880669bf
|
|
| MD5 |
4bf73928b4906546973b67f96ccb824f
|
|
| BLAKE2b-256 |
2ee6566cfd7ce95a352ee6413f855abebab501796f367343d01e50ab4c87e408
|