From 810b6c8c6bff8be22fef448ec39df18112f5792b Mon Sep 17 00:00:00 2001 From: taizan-hokuto <55448286+taizan-hokuto@users.noreply.github.com> Date: Tue, 24 Dec 2019 00:29:10 +0900 Subject: [PATCH 1/3] Fix README --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 109550a..82fee23 100644 --- a/README.md +++ b/README.md @@ -154,26 +154,26 @@ Each item can be got with items() function. datetime str - ex. "2019-10-10 12:34:56" + e.g. "2019-10-10 12:34:56" elapsedTime str - elapsed time. (ex. "1:02:27") *Replay Only. + elapsed time. (e.g. "1:02:27") *Replay Only. amountValue float - ex. 1,234.0 + e.g. 1,234.0 amountString str - ex. "$ 1,234" + e.g. "$ 1,234" currency str - ISO 4217 currency codes (ex. "USD") + ISO 4217 currency codes (e.g. "USD") bgColor @@ -202,7 +202,7 @@ Structure of author object. channelId str - *chatter's channel ID. NOT broadcasting video's channel ID. + *chatter's channel ID. channelUrl From fff09d4c274ed329bf6a6174561b2811ec39d2e9 Mon Sep 17 00:00:00 2001 From: taizan-hokuto <55448286+taizan-hokuto@users.noreply.github.com> Date: Tue, 24 Dec 2019 00:52:53 +0900 Subject: [PATCH 2/3] Fix README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 82fee23..ab904d4 100644 --- a/README.md +++ b/README.md @@ -111,8 +111,8 @@ async def func(data): tick=data.items[count+1].timestamp -data.items[count].timestamp else: tick=0 - print(f"<{c.elapsedTime}> [{c.author.name}]-{c.message} {c.amountString}") - await asyncio.sleep(tick/1000) + print(f"<{c.elapsedTime}> [{c.author.name}]-{c.message} {c.amountString}") + await asyncio.sleep(tick/1000) loop = asyncio.get_event_loop() loop.run_until_complete(main()) From c0728e1366f75e5faeffa4e76b3c6215dda6b570 Mon Sep 17 00:00:00 2001 From: taizan-hokuto <55448286+taizan-hokuto@users.noreply.github.com> Date: Tue, 24 Dec 2019 00:55:00 +0900 Subject: [PATCH 3/3] Increment version --- pytchat/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytchat/__init__.py b/pytchat/__init__.py index a013b74..213ccdb 100644 --- a/pytchat/__init__.py +++ b/pytchat/__init__.py @@ -2,7 +2,7 @@ pytchat is a python library for fetching youtube live chat without using yt api, Selenium, or BeautifulSoup. """ __copyright__ = 'Copyright (C) 2019 taizan-hokuto' -__version__ = '0.0.3.7' +__version__ = '0.0.3.8' __license__ = 'MIT' __author__ = 'taizan-hokuto' __author_email__ = '55448286+taizan-hokuto@users.noreply.github.com'