Python:登录颜色
·
如果您使用日志记录模块,您应该使用有用的模块来显示彩色命令行。
https://pypi.org/project/coloredlogs/
安装:
pip install coloredlogs
进入全屏模式 退出全屏模式
它非常易于使用:
import coloredlogs, logging
# Create a logger object.
logger = logging.getLogger(__name__)
# By default the install() function installs a handler on the root logger,
# this means that log messages from your code and log messages from the
# libraries that you use will all show up on the terminal.
coloredlogs.install(level='DEBUG')
# If you don't want to see log messages from libraries, you can pass a
# specific logger object to the install() function. In this case only log
# messages originating from that logger will show up on the terminal.
coloredlogs.install(level='DEBUG', logger=logger)
# Some examples.
logger.debug("this is a debugging message")
logger.info("this is an informational message")
logger.warning("this is a warning message")
logger.error("this is an error message")
logger.critical("this is a critical message")
进入全屏模式 退出全屏模式
就这样 ;-)
更多推荐

所有评论(0)