A simple colored logger for Python with customized formatting.
pip install logsim- Colored log outputs in terminal
- Automatic formatting with time and log level
- Easy to use with a familiar logging API
- Consistent visual alignment for better readability
Note: Logsim are built upon python logging module, so it's compatible with any logging configuration.
from logsim import CustomLogger
# Create a logger
logger = CustomLogger()
# Use the logger
logger.info("Hello from my custom logger!")MIT