Metadata-Version: 2.4
Name: personal-logging
Version: 1.0.1
Summary: A Python library for colored common logs with customization support.
Project-URL: Homepage, https://github.com/Placewith5s/personal-logging
Project-URL: Issues, https://github.com/Placewith5s/personal-logging/issues
Author: Placewith5s
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.14
Requires-Dist: build>=1.5.0
Requires-Dist: termcolor>=3.3.0
Requires-Dist: twine>=6.2.0
Description-Content-Type: text/markdown

# Personal Logging
A Python library for colored common logs with customization support.


## Installation
```sh
pip3 install personal-logging
```


## Usage
```python
from personal_logging.main import warn, error

warn("Caution!")
error("Uh oh!")
```

## Defaults
### Variables
```python
warn_emoji = "⚠️"
error_emoji = "❌"
```

### Parameters
```python
identifier_on=True
emojis=True
```
