Metadata-Version: 2.1
Name: nowpayment
Version: 1.3.0
Summary: A NowPayments.io client for Python
Home-page: https://github.com/its0x4d/nowpayment
Author: Mostafa Mosavi
Author-email: mostafa.uwsgi@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

## nowpayment - A payment gateway client for NowPayments.io

## Installation

```bash
pip install nowpayment
```

## Supported APIs

- [x] Payments  API
- [x] Currency API
- [x] Payout API
- [ ] Recurring Payments API
- [ ] Billing API

```python
from nowpayment import NowPayments

# Create a NowPayment instance
np = NowPayments("API_KEY")

# Create Invoice
invoice = np.payment.create_invoice(
    price_amount=1,
    price_currency="USD"
)

# Get Available Currencies
currencies = np.currency.get_available_currencies()

```



