Python ALFACoins
A Python3.6 wapper aournd the ALFACoins APIs.
by Carrene.
alfacoins is a Python3.6 Library for interacting with ALFAcoins API.
alfacoins provides cryptocurrency payment integration on your website via ALFAcoins.
alfacoins allows you to integrate payments with the following cryptocurrencies:
- Bitcoin (BTC)
- Ethereum (ETH)
- XRP (XRP)
- Bitcoin Cash (BCH)
- Litecoin (LTC)
- Dash (DASH)
- get_fees
- get_rate
- get_rates
- create_order*
- order_status*
- bitsend*
- bitsend_status*
- refund*
- statistics*
*: Private API
pip3.6 install alfacoins
You can get an instance of ALFACoins
class like this:
from alfacoins import ALFACoins
alfacoins = ALFACoins()
from alfacoins import ALFACoins
alfacoins = ALFACoins(
name='shop-name',
password='password',
secret_key='07fc884cf02af307400a9df4f2d15490'
)
result = alfacoins.create_order(
type='litecointestnet',
amount=1.2345,
currency='USD',
order_id=1,
options={
'notificationURL': 'https://example.io/notify',
'redirectURL': 'https://example.io/redirect',
'payerName': 'Bob',
'payerEmail': '[email protected]',
},
description='This is for test!',
)
Additional information and API documentation is here: ALFAcoins API Reference.