Metadata-Version: 2.4
Name: d4rklogger
Version: 0.1.0
Summary: Simple timezone-aware logging helpers with rotating file output.
Author: D4rk-TG
Keywords: logging,logger,timezone
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: OS Independent
Classifier: Topic :: System :: Logging
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: colors
Requires-Dist: colorama>=0.4.6; extra == "colors"

# d4rklogger

Lightweight timezone-aware logger setup with:

- rotating daily log files
- optional colored console output
- configurable timezone offset through `TIME_ZONE`

## Install

```bash
pip install d4rklogger
```

Optional color support:

```bash
pip install ".[colors]"
```

## Usage

```python
from log import setup_logger

log = setup_logger("app")
log.info("hello")
```

Set the timezone offset with an environment variable such as `TIME_ZONE=05:30` or `TIME_ZONE=-04:00`.
