mirror of
https://github.com/RYDE-WORK/MediaCrawler.git
synced 2026-01-19 13:33:27 +08:00
feat: jieba日志调整为warning级别
This commit is contained in:
parent
a599916d31
commit
ec47c230a9
@ -1,5 +1,6 @@
|
||||
import asyncio
|
||||
import json
|
||||
import logging
|
||||
from collections import Counter
|
||||
|
||||
import aiofiles
|
||||
@ -14,6 +15,7 @@ plot_lock = asyncio.Lock()
|
||||
|
||||
class AsyncWordCloudGenerator:
|
||||
def __init__(self):
|
||||
logging.getLogger('jieba').setLevel(logging.WARNING)
|
||||
self.stop_words_file = config.STOP_WORDS_FILE
|
||||
self.lock = asyncio.Lock()
|
||||
self.stop_words = self.load_stop_words()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user