/exencolorlogs

A module for nice colored logs in python

Primary LanguagePythonMIT LicenseMIT

PyPI - Downloads License PyPI - Version CodeFactor

ExenColorLogs

A module for nice looking colored logs. Does not have much customization, just a Logger class with special formatting.

Installation

The module is available for installation from PyPI via pip.

$ pip install exencolorlogs

Basic Usage

from exencolorlogs import Logger

log = Logger()
log.info("Greeting...")
log.ok("Hello!")