Metadata-Version: 2.2
Name: rexlogger
Version: 1.0.0
Summary: A stylish console logger with colored output
Home-page: https://github.com/iblamerex/Rexlogger
Author: ReXx™
Author-email: r3x.fr5@gmail.com
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
Requires-Dist: colorama>=0.4.4
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# RexLogger

A stylish console logger with colored output for Python applications.

## Installation

```bash
pip install rexlogger
```

## Usage

```python
from rexlogger import rex

rex.success("Operation successful!")
rex.error("Something went wrong!")
rex.debug("Debug information")
rex.warn("Warning message")
rex.ratelimit("Ratelimit message")
rex.input("Input")
```

## Features

- Colored output using colorama
- Timestamp prefix
- Four log levels: success, error, debug, and warn
- Easy to use interface

## Requirements

- Python 3.6+
- colorama>=0.4.4
