Metadata-Version: 2.1
Name: hue_logger
Version: 0.1.1
Summary: A simple client for sending logs to the Hue Logs server.
Home-page: https://github.com/singh47/hue_logger_py_client
Author: Harman Singh
Author-email: harman@petdrifts.com
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
License-File: LICENSE
Requires-Dist: requests>=2.0.0

# Project description
Hue Logger is a simple Python client for sending logs to the Hue Logs server. Hue Logs is minimal logging dashboard.
Install Hue Server from [here](https://github.com/singh47/huelogs/)

## Installation
```bash
pip install hue-logger
```

## Usage

Replace localhost with your server url

```bash
from hue_logger import HueLogger

logger = HueLogger("http://localhost:5000")
logger.log("This is a test log")
```
