Skip to content

logKISS

logkiss logo

logkiss is a simple and beautiful Python logging library.

Features

  • Colorful Log Output - Improved visibility with color-coded log levels
  • Simple API - Easy-to-use API compatible with standard Python logging
  • Cloud Ready - Support for AWS CloudWatch and Google Cloud Logging
  • Customizable - Easily customize colors and formats

Quick Start

import logkiss as logging

# Get a logger
logger = logging.getLogger(__name__)

# Log output
logger.debug("Debug message")
logger.info("Info message")
logger.warning("Warning message")
logger.error("Error message")
logger.critical("Critical error message")

Installation

pip install logkiss

To use cloud logging features:

pip install "logkiss[cloud]"

License

Distributed under the MIT License. See the LICENSE file for details.