1 Star 0 Fork 8

张子雪/chthonian

forked from openKylin/chthonian 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
utils.py 578 Bytes
一键复制 编辑 原始数据 按行查看 历史
宋帮诚晋 提交于 2022-10-08 17:01 . Initial commit
import re
import datetime
from lib.log import logger as log
from collections import defaultdict
def tree():
"""create data struct tree"""
return defaultdict(tree)
def now():
"""return current time, 2017-01-01 12:26:10,567"""
return datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S,%f')[:-3]
def info(message):
"""info log"""
log.info(message)
def warn(message):
"""warn log"""
log.warn(message)
def error(message):
"""error log"""
log.error(message)
def highlight(message):
"""highlight log"""
log.highlight(message)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhang-zixue/chthonian.git
git@gitee.com:zhang-zixue/chthonian.git
zhang-zixue
chthonian
chthonian
master

搜索帮助