Skip to content

Instantly share code, notes, and snippets.

View zffocussss's full-sized avatar

zffocussss

  • ShenZhen,China
View GitHub Profile
@hosackm
hosackm / colorlog.py
Created July 28, 2020 01:39
Colored logger module using Colorama
import logging
from colorama import init, Fore, Back
init(autoreset=True)
class ColorFormatter(logging.Formatter):
# Change this dictionary to suit your coloring needs!
COLORS = {
"WARNING": Fore.RED,