Skip to content

Instantly share code, notes, and snippets.

@joshbode
joshbode / logging.py
Last active May 4, 2025 06:25
Colour Logging - Works in Jupyter Lab/Notebook
import sys
import logging
from typing import Optional, Dict
from colorama import Fore, Back, Style
class ColoredFormatter(logging.Formatter):
"""Colored log formatter."""