Metadata-Version: 2.4
Name: hue_logger
Version: 0.1.3
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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Project description
Hue Logger is a simple Python client for sending logs to the Hue Logs server. Hue Logs is minimal logging dashboard. Compatible with Python3.
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
# Initialize the logger - replace localhost with your url
logger = HueLogger(server_url="http://localhost:5000", api_key="your-api-key", service_name="your service")
# Send a log
logger.log("Test log from Python client")
```
