Metadata-Version: 2.1
Name: hvmnd_api_client
Version: 6.0.0
Summary: Python client library for the Go API application.
Home-page: https://github.com/Smarandii/hvmnd-api-client
Author: Smarandii
Author-email: olegsmarandi@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pytz>=2024.1
Requires-Dist: requests>=2.0.0
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: python-dotenv; extra == "dev"

# hvmnd api client

Python client library for the [Go API application](https://github.com/Smarandii/hvmnd-api).

## Installation

```bash
pip install hvmnd_api_client
```

## Usage

```py
from hvmnd_api_client import APIClient

client = APIClient(base_url='https://localhost/api/v1')

client.get_users()
client.get_nodes()
client.get_payments()
client.create_payment_ticket(user_id=1, amount=10000)
client.cancel_payment(id_='99999')

```
