Metadata-Version: 2.1
Name: poofpy
Version: 0.2
Home-page: https://github.com/tarekturbo/poofpy
Author: Tarook (Tarek)
Author-email: tarekthedream@gmail.com
License: MIT
Keywords: poof,api wrapper,crypto,payments,crypto payments,crypto api,payment gateway,crypto payment gateway,free,payment,gateway,sellix,shoppy,poof.io
Description-Content-Type: text/markdown
License-File: LICENSE.txt

  
  
  
# Poof Python API Wrapper 
## Installing
```
pip install poofpy
```
### get your api key
1. login to [poof](https://www.poof.io/login)
2. create your api key from [here](https://www.poof.io/developers)
### Examples
#### Set your api key
```python
from poofpy import poof 
client = poof("your api key here")

``` 
#### Creating crypto invoice 
```python
invoice = client.create_crypto_invoice(10,CryptoCurrencies.Bitcoin,Currency.USD)
print(invoice.payment_link)
```
#### Creating crypto charge
```python
charge = client.create_crypto_charge(10,CryptoCurrencies.Bitcoin,Currency.USD)
print(charge.address)
```
#### Creating fiat invoice
```python
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 
``` python
charge = client.create_fiat_charge(100,PaymentMethod.Paypal, Currency.USD, "https://www.poof.io", "https://www.poof.io")
print(charge.payment_link)
```
#### Getting Balance
```python 
obj = client.FetchWalletBalance(CryptoCurrencies.Litecoin)
print(obj.balance)
```
#### Payout
```python
client.create_payout(10,CryptoCurrencies.Litecoin,"Lc9oPPPLkUsjDTAH13wAcPRKJyNj9gydwC")
```

  
  
  
  
