From 20a20ddd08b03a3b9644901cc1ab7773abfcb225 Mon Sep 17 00:00:00 2001 From: taizan-hokouto <55448286+taizan-hokuto@users.noreply.github.com> Date: Tue, 3 Nov 2020 20:21:39 +0900 Subject: [PATCH] Update README --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ccea4b8..eb0f948 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,9 @@ pip install pytchat One-liner command. Save chat data to html with embedded custom emojis. + Show chat stream (--echo option). + ```bash $ pytchat -v https://www.youtube.com/watch?v=uIx8l2xlYVY -o "c:/temp/" # options: @@ -46,8 +48,9 @@ while chat.is_alive(): for c in chat.get().sync_items(): print(f"{c.datetime} [{c.author.name}]- {c.message}") ``` +see [wiki](https://github.com/taizan-hokuto/pytchat/wiki/PytchatCore) -### Output JSON format (feature of [DefaultProcessor](https://github.com/taizan-hokuto/pytchat/wiki/DefaultProcessor)) +### Output JSON format (feature of [DefaultProcessor](https://github.com/taizan-hokuto/pytchat/wiki/DefaultProcessor) ```python import pytchat import time @@ -68,7 +71,7 @@ while chat.is_alive(): #### Fetch chat with buffer. [LiveChat](https://github.com/taizan-hokuto/pytchat/wiki/LiveChat) -#### Asyncio Context +#### Use with asyncio. [LiveChatAsync](https://github.com/taizan-hokuto/pytchat/wiki/LiveChatAsync) #### [YT API compatible chat processor](https://github.com/taizan-hokuto/pytchat/wiki/CompatibleProcessor)