From 30aaa54a2f842e60e84c2e379c3747a85a037b78 Mon Sep 17 00:00:00 2001 From: taizan-hokuto <55448286+taizan-hokuto@users.noreply.github.com> Date: Thu, 14 Nov 2019 22:34:29 +0900 Subject: [PATCH 1/3] Change debug mode --- pytchat/config/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytchat/config/__init__.py b/pytchat/config/__init__.py index 463f03c..b17df93 100644 --- a/pytchat/config/__init__.py +++ b/pytchat/config/__init__.py @@ -1,4 +1,4 @@ import logging -LOGGER_MODE = logging.DEBUG +LOGGER_MODE = logging.ERROR headers = { 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36'} From 68c707b7d6ee365904ccf04d84560602f7a94bbe Mon Sep 17 00:00:00 2001 From: taizan-hokuto <55448286+taizan-hokuto@users.noreply.github.com> Date: Thu, 14 Nov 2019 22:37:16 +0900 Subject: [PATCH 2/3] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 96d5219..bc04b23 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Other features: + Quick fetching of initial chat data by generating continuation params instead of web scraping. -より詳細な説明は [wiki](https://github.com/taizan-hokuto/pytchat/wiki) をご参照ください。 +For more detailed information, see [wiki](https://github.com/taizan-hokuto/pytchat/wiki). ## Install ```python From 53b70ed86b282dbf9349546cb3104c508a8c1f88 Mon Sep 17 00:00:00 2001 From: taizan-hokuto <55448286+taizan-hokuto@users.noreply.github.com> Date: Thu, 14 Nov 2019 22:38:25 +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 e9bbe15..797adcf 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.0' +__version__ = '0.0.3.1' __license__ = 'MIT' __author__ = 'taizan-hokuto' __author_email__ = '55448286+taizan-hokuto@users.noreply.github.com'