diff --git a/pytchat/processors/json_display_processor.py b/pytchat/processors/json_display_processor.py deleted file mode 100644 index ba8e442..0000000 --- a/pytchat/processors/json_display_processor.py +++ /dev/null @@ -1,13 +0,0 @@ -import json -from .chat_processor import ChatProcessor - -class JsonDisplayProcessor(ChatProcessor): - - def process(self,chat_components: list): - if chat_components: - for component in chat_components: - chatdata = component.get('chatdata') - if chatdata: - for chat in chatdata: - print(json.dumps(chat,ensure_ascii=False)[:200]) -