Metadata-Version: 2.1
Name: pylogger_unified
Version: 0.0.1
Summary: A python wrapper that handles web logging, standard application logging to different format: json (gelf), colored text, raw, gnome notifications
Project-URL: Homepage, https://github.com/JayBeeDe/pylogger_unified
Project-URL: Bug Tracker, https://github.com/JayBeeDe/pylogger_unified/issues
Author: JayBeeDe
License-File: LICENSE
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: python-json-logger>=2.0.4
Description-Content-Type: text/markdown

# pylogger_unified

A python wrapper that handles web logging, standard application logging to different format: json (gelf), colored text, raw, gnome notifications

## Build manually (testing env for the moment)

Install testing envrionment here: <https://packaging.python.org/en/latest/tutorials/packaging-projects/>.

```bash
cd pylogger-unified/
python3 -m build
python3 -m twine upload --repository testpypi ./dist/*
```

## Install the lib (testing env for the moment)

```bash
pip3 install -i https://test.pypi.org/simple/ pylogger_unified
```

## Start Using the lib

```python3
from pylogger_unified import logger as pylogger_unified
logger=pylogger_unified.init_logger()
logger.info("this is a test")
```
