Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 501 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 501 Bytes

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)