Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 1.26 KB

README.md

File metadata and controls

52 lines (43 loc) · 1.26 KB

Poof Python API Wrapper

Installing

pip install poofpy

get your api key

  1. login to poof
  2. create your api key from here

Examples

Set your api key

from poofpy import Poof
client = Poof("your api key here")

Creating crypto invoice

invoice = client.create_crypto_invoice(10,CryptoCurrencies.Bitcoin,Currency.USD)
print(invoice.payment_link)

Creating crypto charge

charge = client.create_crypto_charge(10,CryptoCurrencies.Bitcoin,Currency.USD)
print(charge.address)

Creating fiat invoice

invoice = client.create_fiat_invoice(100,PaymentMethod.Paypal, Currency.USD, "https://www.poof.io", "https://www.poof.io")
print(invoice.payment_link)

Creating fiat charge

charge = client.create_fiat_charge(100,PaymentMethod.Paypal, Currency.USD, "https://www.poof.io", "https://www.poof.io")
print(charge.payment_link)

Getting Balance

obj = client.FetchWalletBalance(CryptoCurrencies.Litecoin)
print(obj.balance)

Payout

client.create_payout(10,CryptoCurrencies.Litecoin,"Lc9oPPPLkUsjDTAH13wAcPRKJyNj9gydwC")