Metadata-Version: 2.4
Name: prettylogs
Version: 0.0.2
Summary: Simple colorful logging for Python
Author-email: Your Name <you@example.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: colorama
Dynamic: license-file

# prettylogs

A simple colorful logging library for Python.

## Installation

pip install prettylogs

## Usage

```python
from prettylogs import logger

logger.info("Server started")
logger.success("Database connected")
logger.warning("Low disk space")
logger.error("Something failed")
