diff --git a/README.md b/README.md
index 109550a..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())
@@ -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 |
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'