Metadata-Version: 2.1
Name: lognotify
Version: 0.0.1
Summary: A module for colorful console logging
Home-page: https://github.com/411Gamer/lognotify
Author: 411Gamer
Author-email: ponrobot0@gmail.com
License: GPL-3.0
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: colorama==0.4.6

## **Lognotify** — module for colorful logging

### **Supported features**
#### **Predefined log levels:**
- **info** — informational messages
- **warning** — warnings
- **error** — errors
- **debug** — debugging messages
- **critical** — critical errors
- **custom** — custom log level

#### **Formatting options:**
- **Text and level (label) colors:**
    - `black, red, green, yellow, blue, magenta, cyan, white`
    - Additional: `light-*`, `dim-*` (e.g., `light-red`, `dim-blue`)
- **Background colors:**
    - Same as text colors
- **Text case options:**
    - `upper` — ALL UPPERCASE
    - `lower` — all lowercase
    - `capitalize` — First letter uppercase
    - `title` — Each Word Capitalized
- **Works on Windows and Linux**

### **Usage examples**
```python
from lognotify import info, warning, error, debug, critical, custom

print(info(text="System is running"))
print(warning(text="Potential issues ahead"))
print(error(text="An error occurred!"))
print(debug(text="Debugging info"))
print(critical(text="Critical failure!"))
print(custom(text="Custom log message", log_level="ALERT", text_color="magenta", letter_color="red"))
```
