/zixipay

An asynchronous ZixiPay API wrapper.

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

ZixiPay

This library is an asynchronous ZixiPay API wrapper.
All methods were renamed to snake_case, some function parameters as well.

Installation

pip install zixipay
Speedups
pip install ujson

Example usage

from ZixiPay import Zixi, types
ZIXI: Zixi = Zixi(api_key='API_KEY', user_id='USER_ID')


invoice: types.Invoice = await ZIXI.create_invoice(amount=10, currency='USDZ', ref='TEST', multi_currency=True)