From 167c8acb93c6ccbc92ca437ec7a79add855889ca Mon Sep 17 00:00:00 2001 From: taizan-hokuto <55448286+taizan-hokuto@users.noreply.github.com> Date: Mon, 13 Jul 2020 01:52:38 +0900 Subject: [PATCH] Incerment version --- pytchat/__init__.py | 4 ++-- pytchat/config/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pytchat/__init__.py b/pytchat/__init__.py index c4fe2f6..ddcf8e0 100644 --- a/pytchat/__init__.py +++ b/pytchat/__init__.py @@ -1,8 +1,8 @@ """ -pytchat is a python library for fetching youtube live chat without using yt api, Selenium, or BeautifulSoup. +pytchat is a lightweight python library to browse youtube livechat without Selenium or BeautifulSoup. """ __copyright__ = 'Copyright (C) 2019 taizan-hokuto' -__version__ = '0.0.8' +__version__ = '0.0.9' __license__ = 'MIT' __author__ = 'taizan-hokuto' __author_email__ = '55448286+taizan-hokuto@users.noreply.github.com' diff --git a/pytchat/config/__init__.py b/pytchat/config/__init__.py index e374bc5..98edf49 100644 --- a/pytchat/config/__init__.py +++ b/pytchat/config/__init__.py @@ -4,6 +4,6 @@ headers = { 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Safari/537.36'} -def logger(module_name: str, loglevel=logging.DEBUG): +def logger(module_name: str, loglevel=None): module_logger = mylogger.get_logger(module_name, loglevel=loglevel) return module_logger