Metadata-Version: 2.1
Name: nowpayment
Version: 1.4.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
**[NOWPayments](https://nowpayments.io) is a noncustodial crypto payment gateway that lets you accept payments in 75+ cryptocurrencies and auto coin conversion supported.
The gateway is designed to be simple and fast to integrate, with low fees and no minimum balance required. 
It also supports instant settlement and has a variety of features, including integrated invoices and a donation page builder.**
## 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()

```



