Metadata-Version: 2.1
Name: uisp-crm
Version: 0.1.1
Summary: Python library to interact with the Ubiquiti UISP CRM console.
Home-page: https://github.com/thecyberbutler/uisp_crm
License: MIT
Keywords: uisp,ubiquiti,cmr
Author: thecyberbutler
Author-email: michaelbutler75@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: requests (>=2.31.0,<3.0.0)
Project-URL: Repository, https://github.com/thecyberbutler/uisp_crm
Description-Content-Type: text/markdown

# UISP CRM

[![PyPI version](https://badge.fury.io/py/uisp-crm.svg)](https://badge.fury.io/py/uisp-crm)

## Overview

`uisp_crm` is a Python library for working with UISP Clients.

## Installation

You can install the library using pip. Open your terminal and run:

```bash
pip install uisp-crm
```
## Contributing

Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.

## Usage

```python
from uisp_crm import CRM

crm = CRM(hostname="https://YOUR_UISP_CONSOLE", api_key="YOUR_API_KEY")
clients = crm.clients.get_clients()
```

## License

[MIT](https://choosealicense.com/licenses/mit/)
