Metadata-Version: 2.4
Name: advdbg
Version: 0.2.9
Summary: Minimalist colorful debug logger
Author-email: Darkey <weplayok3@gmail.com>, WinFun <placeholder@gmail.com>
License: MIT
Keywords: debug,logger,debugging,color,terminal
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
Dynamic: license-file

# Advanced Debugger

Minimalist, colorful, configurable debug logger for Python.

## Why Advanced Debugger?

- 👨‍💻 Simple console logging of actions.
- 🕐 Debug with time specifying for one minute
- 🗄️ Takes only few lines for much debugs.

## Examples

Define debug category:
dbgVar = AdvDBG.define('title of your debug')

Print something:
dbgVar.info('Text to debug!')
OR
dbgVar('Text to debug!')

Available types:
	`WARN`
	`INFO`
	`ERROR`
	`SUCCESS`

Returns:
Info - title of your debug (01.07.2026, 06:34:53) | Text to debug!

Configure existing category:
dbgVar.cfg(title='REQUEST')

BEFORE: title of your debug
AFTER: REQUEST

## Change Log: v0.2.7

- Added custom exceptions
- Added about() method
- Added checker for updates

## Requirements

- Python >3.6

## LICENSE

This module licensed with MIT

## Installation

```bash
pip install advdbg
