gpt4 book ai didi

python - 找不到记录器 "tldextract"的处理程序

转载 作者:行者123 更新时间:2023-12-01 15:17:48 26 4
gpt4 key购买 nike

从 tldextract 导入提取模块时,在控制台上出现以下日志错误。如何在 python 中处理此类日志记录并避免在控制台上可见。

No handlers could be found for logger "tldextract"

from tldextract import extract

url = "https://sub.example.com/hello.html"
tsd, td, ts = extract(url)
print(td)

最佳答案

添加这个:

from tldextract.tldextract import LOG
import logging
#disable tldextract stderr spam
logging.basicConfig(level=logging.WARN)
LOG.debug('spam spam spam')

关于python - 找不到记录器 "tldextract"的处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50970652/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com