Compare commits
104 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f6b8229998 | ||
|
|
f24c5f9e30 | ||
|
|
5268961854 | ||
|
|
733f754e11 | ||
|
|
582d0b749d | ||
|
|
b8bc00d880 | ||
|
|
ce96d94e23 | ||
|
|
7af92f14c0 | ||
|
|
7305e4178b | ||
|
|
a835d58e10 | ||
|
|
4e956b8d84 | ||
|
|
c4f1194a53 | ||
|
|
90b10a9f8f | ||
|
|
b576c3f928 | ||
|
|
c0728e1366 | ||
|
|
fff09d4c27 | ||
|
|
810b6c8c6b | ||
|
|
dfada86caf | ||
|
|
91aa944df5 | ||
|
|
6ac5191e85 | ||
|
|
fff3e0371f | ||
|
|
a70efe8a67 | ||
|
|
dc47f4debe | ||
|
|
ab5a2a8df2 | ||
|
|
5a79f26fa7 | ||
|
|
18666199b7 | ||
|
|
b357bccb98 | ||
|
|
3c1f079d5f | ||
|
|
289841a000 | ||
|
|
ee0ff7fe74 | ||
|
|
c0870ce537 | ||
|
|
de6ef2490e | ||
|
|
b8bdbdc36f | ||
|
|
9f5d3f323e | ||
|
|
cf9aae3322 | ||
|
|
6ac2315936 | ||
|
|
50c8e34080 | ||
|
|
2d3da91d51 | ||
|
|
3ac71985ff | ||
|
|
13bdf0376b | ||
|
|
b2ffdaec0c | ||
|
|
c85786679f | ||
|
|
c7a7886672 | ||
|
|
12996fb44d | ||
|
|
c884ef7288 | ||
|
|
2cd9e98fc2 | ||
|
|
2ac4c99ab4 | ||
|
|
51bf8ad738 | ||
|
|
2e70e74bcd | ||
|
|
a39d6cb420 | ||
|
|
5dd0cb45b7 | ||
|
|
24873651a6 | ||
|
|
0e060bf998 | ||
|
|
817fed9d1d | ||
|
|
823f7fefa4 | ||
|
|
aa894fc52b | ||
|
|
6d775e5cd0 | ||
|
|
53b70ed86b | ||
|
|
68c707b7d6 | ||
|
|
30aaa54a2f | ||
|
|
d8202daed1 | ||
|
|
db8f49f41c | ||
|
|
76f41bbd59 | ||
|
|
0aa45109a5 | ||
|
|
3ad0d1a61e | ||
|
|
6655e1bce4 | ||
|
|
8a0793ea64 | ||
|
|
df33771b10 | ||
|
|
b17f3ce06e | ||
|
|
7f232e8628 | ||
|
|
40262de6c9 | ||
|
|
ba4e75063a | ||
|
|
194eecec2f | ||
|
|
3e0d7617d5 | ||
|
|
dfa58146f6 | ||
|
|
47d0464b14 | ||
|
|
45f3274907 | ||
|
|
7b704c2b12 | ||
|
|
2fcb9469b3 | ||
|
|
aab7c14d48 | ||
|
|
365964d88c | ||
|
|
517f41f5fe | ||
|
|
432825b5ed | ||
|
|
64ec413bca | ||
|
|
7c6e12cbe5 | ||
|
|
3912758a52 | ||
|
|
8bc209fde8 | ||
|
|
3b580690c7 | ||
|
|
44dc5ff1c3 | ||
|
|
0676ee5c8c | ||
|
|
89ddc0551f | ||
|
|
0a8cd83d41 | ||
|
|
cb505074f7 | ||
|
|
e9e16b2bcc | ||
|
|
c596911901 | ||
|
|
275e1a7aa8 | ||
|
|
737095e7fb | ||
|
|
10d9f76f67 | ||
|
|
34a74f28aa | ||
|
|
c3c4827798 | ||
|
|
e930c75e2d | ||
|
|
d5efede758 | ||
|
|
dc9b067d1d | ||
|
|
940e2a7431 |
@@ -1,4 +1,3 @@
|
|||||||
include requirements.txt
|
include requirements.txt
|
||||||
include requirements_test.txt
|
include requirements_test.txt
|
||||||
exclude *.egg-info
|
|
||||||
|
|
||||||
|
|||||||
125
README.md
125
README.md
@@ -8,27 +8,31 @@ pytchat is a python library for fetching youtube live chat
|
|||||||
without using youtube api, Selenium or BeautifulSoup.
|
without using youtube api, Selenium or BeautifulSoup.
|
||||||
|
|
||||||
Other features:
|
Other features:
|
||||||
+ Customizable chat data processors including yt api compatible one.
|
+ Customizable chat data processors including youtube api compatible one.
|
||||||
+ Available on asyncio context.
|
+ Available on asyncio context.
|
||||||
+ Quick fetching of initial chat data by generating continuation params
|
+ Quick fetching of initial chat data by generating continuation params
|
||||||
instead of web scraping.
|
instead of web scraping.
|
||||||
|
|
||||||
|
For more detailed information, see [wiki](https://github.com/taizan-hokuto/pytchat/wiki).
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
```python
|
```python
|
||||||
pip install pytchat
|
pip install pytchat
|
||||||
```
|
```
|
||||||
|
## Demo
|
||||||
|

|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
### on-demand mode
|
### on-demand mode
|
||||||
```python
|
```python
|
||||||
from pytchat import LiveChat
|
from pytchat import LiveChat
|
||||||
|
|
||||||
chat = LiveChat("G1w62uEMZ74")
|
chat = LiveChat("rsHWP7IjMiw")
|
||||||
while chat.is_alive():
|
while chat.is_alive():
|
||||||
data = chat.get()
|
data = chat.get()
|
||||||
for c in data.items:
|
for c in data.items:
|
||||||
print(f"{c.datetime} [{c.author.name}]-{c.message} {c.amountString}")
|
print(f"{c.datetime} [{c.author.name}]-{c.message} {c.amountString}")
|
||||||
data.tick()
|
data.tick()
|
||||||
```
|
```
|
||||||
|
|
||||||
### callback mode
|
### callback mode
|
||||||
@@ -36,15 +40,17 @@ while chat.is_alive():
|
|||||||
from pytchat import LiveChat
|
from pytchat import LiveChat
|
||||||
import time
|
import time
|
||||||
|
|
||||||
chat = LiveChat("G1w62uEMZ74", callback = func)
|
#callback function is automatically called.
|
||||||
while chat.is_alive():
|
def display(data):
|
||||||
#other background operation here.
|
for c in data.items:
|
||||||
time.sleep(3)
|
print(f"{c.datetime} [{c.author.name}]-{c.message} {c.amountString}")
|
||||||
|
data.tick()
|
||||||
|
|
||||||
def func(chatdata):
|
#entry point
|
||||||
for c in chatdata.items:
|
chat = LiveChat("rsHWP7IjMiw", callback = display)
|
||||||
print(f"{c.datetime} [{c.author.name}]-{c.message} {c.amountString}")
|
while chat.is_alive():
|
||||||
chat.tick()
|
time.sleep(3)
|
||||||
|
#other background operation.
|
||||||
```
|
```
|
||||||
|
|
||||||
### asyncio context:
|
### asyncio context:
|
||||||
@@ -53,42 +59,61 @@ from pytchat import LiveChatAsync
|
|||||||
import asyncio
|
import asyncio
|
||||||
|
|
||||||
async def main():
|
async def main():
|
||||||
chat = LiveChatAsync("G1w62uEMZ74", callback = func)
|
chat = LiveChatAsync("rsHWP7IjMiw", callback = func)
|
||||||
while chat.is_alive():
|
while chat.is_alive():
|
||||||
#other background operation here.
|
await asyncio.sleep(3)
|
||||||
await asyncio.sleep(3)
|
#other background operation.
|
||||||
|
|
||||||
async def func(chat)
|
#callback function is automatically called.
|
||||||
for c in chat.items:
|
async def func(data):
|
||||||
print(f"{c.datetime} [{c.author.name}]-{c.message} {c.amountString}")
|
for c in data.items:
|
||||||
await chat.tick_async()
|
print(f"{c.datetime} [{c.author.name}]-{c.message} {c.amountString}")
|
||||||
|
await data.tick_async()
|
||||||
|
|
||||||
loop = asyncio.get_event_loop()
|
try:
|
||||||
loop.run_until_complete(main())
|
loop = asyncio.get_event_loop()
|
||||||
|
loop.run_until_complete(main())
|
||||||
|
except CancelledError:
|
||||||
|
pass
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
### yt api compatible processor:
|
### youtube api compatible processor:
|
||||||
```python
|
```python
|
||||||
from pytchat import LiveChat, CompatibleProcessor
|
from pytchat import LiveChat, CompatibleProcessor
|
||||||
|
import time
|
||||||
|
|
||||||
chat = LiveChat("G1w62uEMZ74",
|
chat = LiveChat("rsHWP7IjMiw",
|
||||||
processor = CompatibleProcessor() )
|
processor = CompatibleProcessor() )
|
||||||
|
|
||||||
while chat.is_alive():
|
while chat.is_alive():
|
||||||
data = chat.get()
|
data = chat.get()
|
||||||
polling = data["pollingIntervalMillis"]/1000
|
polling = data['pollingIntervalMillis']/1000
|
||||||
for c in data["items"]:
|
for c in data['items']:
|
||||||
if c.get("snippet"):
|
if c.get('snippet'):
|
||||||
print(f"[{c['authorDetails']['displayName']}]"
|
print(f"[{c['authorDetails']['displayName']}]"
|
||||||
f"-{c['snippet']['displayMessage']}")
|
f"-{c['snippet']['displayMessage']}")
|
||||||
time.sleep(polling/len(data["items"]))
|
time.sleep(polling/len(data['items']))
|
||||||
|
|
||||||
```
|
```
|
||||||
|
### replay:
|
||||||
|
```python
|
||||||
|
from pytchat import ReplayChat
|
||||||
|
|
||||||
|
def main():
|
||||||
|
#seektime (seconds): start position of chat.
|
||||||
|
chat = ReplayChat("ojes5ULOqhc", seektime = 60*30)
|
||||||
|
while chat.is_alive():
|
||||||
|
data = chat.get()
|
||||||
|
for c in data.items:
|
||||||
|
print(f"{c.elapsedTime} [{c.author.name}]-{c.message} {c.amountString}")
|
||||||
|
data.tick()
|
||||||
|
|
||||||
## Chatdata Structure of Default Processor
|
main()
|
||||||
Structure of each item which got from items() function.
|
```
|
||||||
|
|
||||||
|
## Structure of Default Processor
|
||||||
|
Each item can be got with items() function.
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<th>name</th>
|
<th>name</th>
|
||||||
@@ -110,6 +135,11 @@ Structure of each item which got from items() function.
|
|||||||
<td>str</td>
|
<td>str</td>
|
||||||
<td>emojis are represented by ":(shortcut text):"</td>
|
<td>emojis are represented by ":(shortcut text):"</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>messageEx</td>
|
||||||
|
<td>str</td>
|
||||||
|
<td>list of message texts and emoji URLs.</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>timestamp</td>
|
<td>timestamp</td>
|
||||||
<td>int</td>
|
<td>int</td>
|
||||||
@@ -118,22 +148,31 @@ Structure of each item which got from items() function.
|
|||||||
<tr>
|
<tr>
|
||||||
<td>datetime</td>
|
<td>datetime</td>
|
||||||
<td>str</td>
|
<td>str</td>
|
||||||
<td></td>
|
<td>e.g. "2019-10-10 12:34:56"</td>
|
||||||
|
</tr>
|
||||||
|
<td>elapsedTime</td>
|
||||||
|
<td>str</td>
|
||||||
|
<td>elapsed time. (e.g. "1:02:27") *Replay Only.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>amountValue</td>
|
<td>amountValue</td>
|
||||||
<td>float</td>
|
<td>float</td>
|
||||||
<td>ex. 1,234.0</td>
|
<td>e.g. 1,234.0</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>amountString</td>
|
<td>amountString</td>
|
||||||
<td>str</td>
|
<td>str</td>
|
||||||
<td>ex. "$ 1,234"</td>
|
<td>e.g. "$ 1,234"</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>currency</td>
|
<td>currency</td>
|
||||||
<td>str</td>
|
<td>str</td>
|
||||||
<td>ex. "USD"</td>
|
<td><a href="https://en.wikipedia.org/wiki/ISO_4217">ISO 4217 currency codes</a> (e.g. "USD")</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>bgColor</td>
|
||||||
|
<td>int</td>
|
||||||
|
<td>RGB Int</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>author</td>
|
<td>author</td>
|
||||||
@@ -157,7 +196,7 @@ Structure of author object.
|
|||||||
<tr>
|
<tr>
|
||||||
<td>channelId</td>
|
<td>channelId</td>
|
||||||
<td>str</td>
|
<td>str</td>
|
||||||
<td></td>
|
<td>*chatter's channel ID.</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>channelUrl</td>
|
<td>channelUrl</td>
|
||||||
@@ -166,12 +205,12 @@ Structure of author object.
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>imageUrl</td>
|
<td>imageUrl</td>
|
||||||
<td></td>
|
<td>str</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>badgeUrl</td>
|
<td>badgeUrl</td>
|
||||||
<td></td>
|
<td>str</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
"""
|
"""
|
||||||
pytchat is a python library for fetching youtube live chat.
|
pytchat is a python library for fetching youtube live chat without using yt api, Selenium, or BeautifulSoup.
|
||||||
"""
|
"""
|
||||||
__copyright__ = 'Copyright (C) 2019 taizan-hokuto'
|
__copyright__ = 'Copyright (C) 2019 taizan-hokuto'
|
||||||
__version__ = '0.0.1.9'
|
__version__ = '0.0.4.0'
|
||||||
__license__ = 'MIT'
|
__license__ = 'MIT'
|
||||||
__author__ = 'taizan-hokuto'
|
__author__ = 'taizan-hokuto'
|
||||||
__author_email__ = '55448286+taizan-hokuto@users.noreply.github.com'
|
__author_email__ = '55448286+taizan-hokuto@users.noreply.github.com'
|
||||||
@@ -11,9 +11,15 @@ __url__ = 'https://github.com/taizan-hokuto/pytchat'
|
|||||||
__all__ = ["core_async","core_multithread","processors"]
|
__all__ = ["core_async","core_multithread","processors"]
|
||||||
|
|
||||||
from .api import (
|
from .api import (
|
||||||
|
config,
|
||||||
LiveChat,
|
LiveChat,
|
||||||
LiveChatAsync,
|
LiveChatAsync,
|
||||||
|
ReplayChat,
|
||||||
|
ReplayChatAsync,
|
||||||
|
ChatProcessor,
|
||||||
CompatibleProcessor,
|
CompatibleProcessor,
|
||||||
SimpleDisplayProcessor,
|
SimpleDisplayProcessor,
|
||||||
JsonfileArchiveProcessor
|
JsonfileArchiveProcessor,
|
||||||
)
|
SpeedCalculator,
|
||||||
|
DummyProcessor
|
||||||
|
)
|
||||||
@@ -1,7 +1,12 @@
|
|||||||
from .core_async.livechat import LiveChatAsync
|
|
||||||
from .core_multithread.livechat import LiveChat
|
from .core_multithread.livechat import LiveChat
|
||||||
|
from .core_async.livechat import LiveChatAsync
|
||||||
|
from .core_multithread.replaychat import ReplayChat
|
||||||
|
from .core_async.replaychat import ReplayChatAsync
|
||||||
|
from .processors.chat_processor import ChatProcessor
|
||||||
from .processors.default.processor import DefaultProcessor
|
from .processors.default.processor import DefaultProcessor
|
||||||
from .processors.compatible.processor import CompatibleProcessor
|
from .processors.compatible.processor import CompatibleProcessor
|
||||||
from .processors.simple_display_processor import SimpleDisplayProcessor
|
from .processors.simple_display_processor import SimpleDisplayProcessor
|
||||||
from .processors.jsonfile_archive_processor import JsonfileArchiveProcessor
|
from .processors.jsonfile_archive_processor import JsonfileArchiveProcessor
|
||||||
|
from .processors.speed_calculator import SpeedCalculator
|
||||||
|
from .processors.dummy_processor import DummyProcessor
|
||||||
|
from . import config
|
||||||
@@ -1,4 +1,13 @@
|
|||||||
import logging
|
import logging
|
||||||
LOGGER_MODE = logging.ERROR
|
from . import mylogger
|
||||||
|
|
||||||
|
LOGGER_MODE = None
|
||||||
|
|
||||||
headers = {
|
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'}
|
'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'}
|
||||||
|
|
||||||
|
def logger(module_name: str):
|
||||||
|
module_logger = mylogger.get_logger(module_name, mode = LOGGER_MODE)
|
||||||
|
return module_logger
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
32
pytchat/config/mylogger.py
Normal file
32
pytchat/config/mylogger.py
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
from logging import NullHandler, getLogger, StreamHandler, FileHandler, Formatter
|
||||||
|
import logging
|
||||||
|
import datetime
|
||||||
|
|
||||||
|
|
||||||
|
def get_logger(modname,mode=logging.DEBUG):
|
||||||
|
logger = getLogger(modname)
|
||||||
|
if mode == None:
|
||||||
|
logger.addHandler(NullHandler())
|
||||||
|
return logger
|
||||||
|
logger.setLevel(mode)
|
||||||
|
#create handler1 for showing info
|
||||||
|
handler1 = StreamHandler()
|
||||||
|
my_formatter = MyFormatter()
|
||||||
|
handler1.setFormatter(my_formatter)
|
||||||
|
|
||||||
|
handler1.setLevel(mode)
|
||||||
|
logger.addHandler(handler1)
|
||||||
|
#create handler2 for recording log file
|
||||||
|
if mode <= logging.DEBUG:
|
||||||
|
handler2 = FileHandler(filename="log.txt", encoding='utf-8')
|
||||||
|
handler2.setLevel(logging.ERROR)
|
||||||
|
handler2.setFormatter(my_formatter)
|
||||||
|
|
||||||
|
|
||||||
|
logger.addHandler(handler2)
|
||||||
|
return logger
|
||||||
|
|
||||||
|
class MyFormatter(logging.Formatter):
|
||||||
|
def format(self, record):
|
||||||
|
s =(datetime.datetime.fromtimestamp(record.created)).strftime("%m-%d %H:%M:%S")+'| '+ (record.module).ljust(15)+(' { '+record.funcName).ljust(20) +":"+str(record.lineno).rjust(4)+'} - '+record.getMessage()
|
||||||
|
return s
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
import asyncio
|
import asyncio
|
||||||
class Buffer(asyncio.Queue):
|
class Buffer(asyncio.Queue):
|
||||||
'''
|
'''
|
||||||
チャットデータを格納するバッファの役割を持つLIFOキュー
|
チャットデータを格納するバッファの役割を持つFIFOキュー
|
||||||
|
|
||||||
Parameter
|
Parameter
|
||||||
---------
|
---------
|
||||||
|
|||||||
@@ -1,184 +0,0 @@
|
|||||||
import asyncio
|
|
||||||
from .listener import AsyncListener
|
|
||||||
from .. import config
|
|
||||||
from .. import mylogger
|
|
||||||
import datetime
|
|
||||||
import os
|
|
||||||
import aiohttp
|
|
||||||
import signal
|
|
||||||
import threading
|
|
||||||
from .buffer import Buffer
|
|
||||||
from concurrent.futures import CancelledError
|
|
||||||
logger = mylogger.get_logger(__name__,mode=config.LOGGER_MODE)
|
|
||||||
|
|
||||||
class ListenManager:
|
|
||||||
|
|
||||||
'''
|
|
||||||
動画IDまたは動画IDのリストを受け取り、
|
|
||||||
動画IDに対応したListenerを生成・保持する。
|
|
||||||
|
|
||||||
#Attributes
|
|
||||||
----------
|
|
||||||
_listeners: dict
|
|
||||||
ListenManegerがつかんでいるListener達のリスト.
|
|
||||||
key:動画ID value:動画IDに対応するListener
|
|
||||||
_queue: Queue
|
|
||||||
動画IDを外部から受け渡しするためのキュー
|
|
||||||
_queueが空である間は、ノンブロッキングで他のタスクを実行
|
|
||||||
_queueに動画IDが投入されると、_dequeueメソッドで
|
|
||||||
直ちにListenerを生成し返す。
|
|
||||||
_event: threading.Event
|
|
||||||
キーボードのCTRL+Cを検知するためのEventオブジェクト
|
|
||||||
'''
|
|
||||||
def __init__(self,interruptable = True):
|
|
||||||
#チャット監視中の動画リスト
|
|
||||||
self._listeners={}
|
|
||||||
self._tasks = []
|
|
||||||
#外部からvideoを受け取るためのキュー
|
|
||||||
self._queue = asyncio.Queue()
|
|
||||||
self._event = threading.Event()
|
|
||||||
self._ready_queue()
|
|
||||||
self._is_alive = True
|
|
||||||
#キーボードのCtrl+cを押したとき、_hundler関数を呼び出すように設定
|
|
||||||
signal.signal(signal.SIGINT, (lambda a, b: self._handler(self._event, a, b)))
|
|
||||||
|
|
||||||
def is_alive(self)->bool:
|
|
||||||
'''
|
|
||||||
ListenManagerが稼働中であるか。
|
|
||||||
True->稼働中
|
|
||||||
False->Ctrl+Cが押されて終了
|
|
||||||
'''
|
|
||||||
logger.debug(f'check is_alive() :{self._is_alive}')
|
|
||||||
return self._is_alive
|
|
||||||
|
|
||||||
def _handler(self, event, sig, handler):
|
|
||||||
'''
|
|
||||||
Ctrl+Cが押下されたとき、終了フラグをセットする。
|
|
||||||
'''
|
|
||||||
logger.debug('Ctrl+c pushed')
|
|
||||||
self._is_alive = False
|
|
||||||
logger.debug('terminating listeners.')
|
|
||||||
for listener in self._listeners.values():
|
|
||||||
listener.terminate()
|
|
||||||
logger.debug('end.')
|
|
||||||
|
|
||||||
|
|
||||||
def _ready_queue(self):
|
|
||||||
#loop = asyncio.get_event_loop()
|
|
||||||
self._tasks.append(
|
|
||||||
asyncio.create_task(self._dequeue())
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
async def set_video_ids(self,video_ids:list):
|
|
||||||
for video_id in video_ids:
|
|
||||||
if video_id:
|
|
||||||
await self._queue.put(video_id)
|
|
||||||
|
|
||||||
|
|
||||||
async def get_listener(self,video_id) -> AsyncListener:
|
|
||||||
return await self._create_listener(video_id)
|
|
||||||
|
|
||||||
# async def getlivechat(self,video_id):
|
|
||||||
# '''
|
|
||||||
# 指定された動画IDのチャットデータを返す
|
|
||||||
|
|
||||||
# Parameter
|
|
||||||
# ----------
|
|
||||||
# video_id: str
|
|
||||||
# 動画ID
|
|
||||||
|
|
||||||
# Return
|
|
||||||
# ----------
|
|
||||||
# 引数で受け取った動画IDに対応する
|
|
||||||
# Listenerオブジェクトへの参照
|
|
||||||
|
|
||||||
# '''
|
|
||||||
# logger.debug('manager get/create listener')
|
|
||||||
# listener = await self._create_listener(video_id)
|
|
||||||
# '''
|
|
||||||
# 上が完了しないうちに、下が呼び出される
|
|
||||||
# '''
|
|
||||||
# if not listener._initialized:
|
|
||||||
# await asyncio.sleep(2)
|
|
||||||
# return []
|
|
||||||
# if listener:
|
|
||||||
# #listener._isfirstrun=False
|
|
||||||
# return await listener.getlivechat()
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
async def _dequeue(self):
|
|
||||||
'''
|
|
||||||
キューに入った動画IDを
|
|
||||||
Listener登録に回す。
|
|
||||||
|
|
||||||
'''
|
|
||||||
while True:
|
|
||||||
video_id = await self._queue.get()
|
|
||||||
#listenerを登録、タスクとして実行する
|
|
||||||
logger.debug(f'deque got [{video_id}]')
|
|
||||||
await self._create_listener(video_id)
|
|
||||||
|
|
||||||
async def _create_listener(self, video_id) -> AsyncListener:
|
|
||||||
'''
|
|
||||||
Listenerを作成しチャット取得中リストに加え、
|
|
||||||
Listenerを返す
|
|
||||||
'''
|
|
||||||
if video_id is None or not isinstance(video_id, str):
|
|
||||||
raise TypeError('video_idは文字列でなければなりません')
|
|
||||||
if video_id in self._listeners:
|
|
||||||
return self._listeners[video_id]
|
|
||||||
else:
|
|
||||||
#listenerを登録する
|
|
||||||
listener = AsyncListener(video_id,interruptable = False,buffer = Buffer())
|
|
||||||
self._listeners.setdefault(video_id,listener)
|
|
||||||
#task = asyncio.ensure_future(listener.initialize())
|
|
||||||
#await asyncio.gather(listener.initialize())
|
|
||||||
#task.add_done_callback(self.finish)
|
|
||||||
#await listener.initialize()
|
|
||||||
#self._tasks.append(task)
|
|
||||||
|
|
||||||
return listener
|
|
||||||
|
|
||||||
|
|
||||||
def finish(self,sender):
|
|
||||||
try:
|
|
||||||
if sender.result():
|
|
||||||
video_id = sender.result()[0]
|
|
||||||
message = sender.result()[1]
|
|
||||||
|
|
||||||
#listener終了時のコールバック
|
|
||||||
#sender.result()[]でデータを取得できる
|
|
||||||
logger.info(f'終了しました VIDEO_ID:[{video_id}] message:{message}')
|
|
||||||
#logger.info(f'終了しました')
|
|
||||||
if video_id in self._listeners:
|
|
||||||
self._listeners.pop(video_id)
|
|
||||||
except CancelledError:
|
|
||||||
logger.debug('cancelled.')
|
|
||||||
|
|
||||||
def get_listeners(self):
|
|
||||||
return self._listeners
|
|
||||||
|
|
||||||
def shutdown(self):
|
|
||||||
'''
|
|
||||||
ListenManegerを終了する
|
|
||||||
'''
|
|
||||||
logger.debug("start shutdown")
|
|
||||||
self._is_alive =False
|
|
||||||
try:
|
|
||||||
#Listenerを停止する。
|
|
||||||
for listener in self._listeners.values():
|
|
||||||
listener.terminate()
|
|
||||||
#taskをキャンセルする。
|
|
||||||
for task in self._tasks:
|
|
||||||
if not task.done():
|
|
||||||
#print(task)
|
|
||||||
task.cancel()
|
|
||||||
except Exception as er:
|
|
||||||
logger.info(str(er),type(er))
|
|
||||||
|
|
||||||
logger.debug("finished.")
|
|
||||||
|
|
||||||
def get_tasks(self):
|
|
||||||
return self._tasks
|
|
||||||
@@ -1,27 +1,24 @@
|
|||||||
import aiohttp, asyncio, async_timeout
|
import aiohttp, asyncio
|
||||||
import datetime
|
import datetime
|
||||||
import json
|
import json
|
||||||
import random
|
import random
|
||||||
import signal
|
import signal
|
||||||
import threading
|
|
||||||
import time
|
import time
|
||||||
import traceback
|
import traceback
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
from aiohttp.client_exceptions import ClientConnectorError
|
from aiohttp.client_exceptions import ClientConnectorError
|
||||||
from concurrent.futures import CancelledError
|
from concurrent.futures import CancelledError
|
||||||
from .buffer import Buffer
|
from .buffer import Buffer
|
||||||
from .parser import Parser
|
from ..parser.live import Parser
|
||||||
from .. import config
|
from .. import config
|
||||||
from .. import mylogger
|
|
||||||
from ..exceptions import ChatParseException,IllegalFunctionCall
|
from ..exceptions import ChatParseException,IllegalFunctionCall
|
||||||
from ..paramgen import liveparam
|
from ..paramgen import liveparam
|
||||||
|
|
||||||
from ..processors.default.processor import DefaultProcessor
|
from ..processors.default.processor import DefaultProcessor
|
||||||
|
from ..processors.combinator import Combinator
|
||||||
|
|
||||||
logger = mylogger.get_logger(__name__,mode=config.LOGGER_MODE)
|
logger = config.logger(__name__)
|
||||||
MAX_RETRY = 10
|
|
||||||
headers = config.headers
|
headers = config.headers
|
||||||
|
MAX_RETRY = 10
|
||||||
|
|
||||||
|
|
||||||
class LiveChatAsync:
|
class LiveChatAsync:
|
||||||
@@ -74,14 +71,17 @@ class LiveChatAsync:
|
|||||||
exception_handler = None,
|
exception_handler = None,
|
||||||
direct_mode = False):
|
direct_mode = False):
|
||||||
self.video_id = video_id
|
self.video_id = video_id
|
||||||
self.processor = processor
|
if isinstance(processor, tuple):
|
||||||
|
self.processor = Combinator(processor)
|
||||||
|
else:
|
||||||
|
self.processor = processor
|
||||||
self._buffer = buffer
|
self._buffer = buffer
|
||||||
self._callback = callback
|
self._callback = callback
|
||||||
self._done_callback = done_callback
|
self._done_callback = done_callback
|
||||||
self._exception_handler = exception_handler
|
self._exception_handler = exception_handler
|
||||||
self._direct_mode = direct_mode
|
self._direct_mode = direct_mode
|
||||||
self._is_alive = True
|
self._is_alive = True
|
||||||
|
self._parser = Parser()
|
||||||
self._setup()
|
self._setup()
|
||||||
|
|
||||||
if not LiveChatAsync._setup_finished:
|
if not LiveChatAsync._setup_finished:
|
||||||
@@ -124,7 +124,7 @@ class LiveChatAsync:
|
|||||||
|
|
||||||
async def _startlisten(self):
|
async def _startlisten(self):
|
||||||
"""最初のcontinuationパラメータを取得し、
|
"""最初のcontinuationパラメータを取得し、
|
||||||
_listenループを開始する
|
_listenループのタスクを作成し開始する
|
||||||
"""
|
"""
|
||||||
initial_continuation = await self._get_initial_continuation()
|
initial_continuation = await self._get_initial_continuation()
|
||||||
if initial_continuation is None:
|
if initial_continuation is None:
|
||||||
@@ -150,7 +150,7 @@ class LiveChatAsync:
|
|||||||
|
|
||||||
async def _listen(self, continuation):
|
async def _listen(self, continuation):
|
||||||
''' continuationに紐付いたチャットデータを取得し
|
''' continuationに紐付いたチャットデータを取得し
|
||||||
チャットデータを格納、
|
Bufferにチャットデータを格納、
|
||||||
次のcontinuaitonを取得してループする。
|
次のcontinuaitonを取得してループする。
|
||||||
|
|
||||||
Parameter
|
Parameter
|
||||||
@@ -164,7 +164,7 @@ class LiveChatAsync:
|
|||||||
livechat_json = (await
|
livechat_json = (await
|
||||||
self._get_livechat_json(continuation, session, headers)
|
self._get_livechat_json(continuation, session, headers)
|
||||||
)
|
)
|
||||||
metadata, chatdata = Parser.parse( livechat_json )
|
metadata, chatdata = self._parser.parse( livechat_json )
|
||||||
timeout = metadata['timeoutMs']/1000
|
timeout = metadata['timeoutMs']/1000
|
||||||
chat_component = {
|
chat_component = {
|
||||||
"video_id" : self.video_id,
|
"video_id" : self.video_id,
|
||||||
@@ -182,9 +182,11 @@ class LiveChatAsync:
|
|||||||
await asyncio.sleep(diff_time)
|
await asyncio.sleep(diff_time)
|
||||||
continuation = metadata.get('continuation')
|
continuation = metadata.get('continuation')
|
||||||
except ChatParseException as e:
|
except ChatParseException as e:
|
||||||
logger.info(f"{str(e)}(video_id:\"{self.video_id}\")")
|
self.terminate()
|
||||||
|
logger.error(f"{str(e)}(video_id:\"{self.video_id}\")")
|
||||||
return
|
return
|
||||||
except (TypeError , json.JSONDecodeError) :
|
except (TypeError , json.JSONDecodeError) :
|
||||||
|
self.terminate()
|
||||||
logger.error(f"{traceback.format_exc(limit = -1)}")
|
logger.error(f"{traceback.format_exc(limit = -1)}")
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -213,6 +215,7 @@ class LiveChatAsync:
|
|||||||
else:
|
else:
|
||||||
logger.error(f"[{self.video_id}]"
|
logger.error(f"[{self.video_id}]"
|
||||||
f"Exceeded retry count. status_code={status_code}")
|
f"Exceeded retry count. status_code={status_code}")
|
||||||
|
self.terminate()
|
||||||
return None
|
return None
|
||||||
return livechat_json
|
return livechat_json
|
||||||
|
|
||||||
@@ -287,13 +290,4 @@ class LiveChatAsync:
|
|||||||
logger.debug(f"残っているタスクを終了しています")
|
logger.debug(f"残っているタスクを終了しています")
|
||||||
await asyncio.gather(*tasks,return_exceptions=True)
|
await asyncio.gather(*tasks,return_exceptions=True)
|
||||||
loop = asyncio.get_event_loop()
|
loop = asyncio.get_event_loop()
|
||||||
loop.stop()
|
loop.stop()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
import json
|
|
||||||
from .. import config
|
|
||||||
from .. import mylogger
|
|
||||||
from .. exceptions import (
|
|
||||||
ResponseContextError,
|
|
||||||
NoContentsException,
|
|
||||||
NoContinuationsException )
|
|
||||||
|
|
||||||
|
|
||||||
logger = mylogger.get_logger(__name__,mode=config.LOGGER_MODE)
|
|
||||||
|
|
||||||
|
|
||||||
class Parser:
|
|
||||||
@classmethod
|
|
||||||
def parse(cls, jsn):
|
|
||||||
if jsn is None:
|
|
||||||
return {'timeoutMs':0,'continuation':None},[]
|
|
||||||
if jsn['response']['responseContext'].get('errors'):
|
|
||||||
raise ResponseContextError('動画に接続できません。'
|
|
||||||
'動画IDが間違っているか、動画が削除/非公開の可能性があります。')
|
|
||||||
contents=jsn['response'].get('continuationContents')
|
|
||||||
#配信が終了した場合、もしくはチャットデータが取得できない場合
|
|
||||||
if contents is None:
|
|
||||||
raise NoContentsException('チャットデータを取得できませんでした。')
|
|
||||||
|
|
||||||
cont = contents['liveChatContinuation']['continuations'][0]
|
|
||||||
if cont is None:
|
|
||||||
raise NoContinuationsException('Continuationがありません。')
|
|
||||||
metadata = (cont.get('invalidationContinuationData') or
|
|
||||||
cont.get('timedContinuationData') or
|
|
||||||
cont.get('reloadContinuationData')
|
|
||||||
)
|
|
||||||
if metadata is None:
|
|
||||||
unknown = list(cont.keys())[0]
|
|
||||||
if unknown:
|
|
||||||
logger.error(f"Received unknown continuation type:{unknown}")
|
|
||||||
metadata = cont.get(unknown)
|
|
||||||
metadata.setdefault('timeoutMs', 10000)
|
|
||||||
chatdata = contents['liveChatContinuation'].get('actions')
|
|
||||||
return metadata, chatdata
|
|
||||||
316
pytchat/core_async/replaychat.py
Normal file
316
pytchat/core_async/replaychat.py
Normal file
@@ -0,0 +1,316 @@
|
|||||||
|
import aiohttp, asyncio
|
||||||
|
import datetime
|
||||||
|
import json
|
||||||
|
import random
|
||||||
|
import signal
|
||||||
|
import time
|
||||||
|
import traceback
|
||||||
|
import urllib.parse
|
||||||
|
from aiohttp.client_exceptions import ClientConnectorError
|
||||||
|
from concurrent.futures import CancelledError
|
||||||
|
from queue import Queue
|
||||||
|
from .buffer import Buffer
|
||||||
|
from ..parser.replay import Parser
|
||||||
|
from .. import config
|
||||||
|
from ..exceptions import ChatParseException,IllegalFunctionCall
|
||||||
|
from ..paramgen import arcparam
|
||||||
|
from ..processors.default.processor import DefaultProcessor
|
||||||
|
from ..processors.combinator import Combinator
|
||||||
|
|
||||||
|
logger = config.logger(__name__)
|
||||||
|
MAX_RETRY = 10
|
||||||
|
headers = config.headers
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class ReplayChatAsync:
|
||||||
|
'''asyncio(aiohttp)を利用してYouTubeのチャットデータを取得する。
|
||||||
|
|
||||||
|
Parameter
|
||||||
|
---------
|
||||||
|
video_id : str
|
||||||
|
動画ID
|
||||||
|
|
||||||
|
seektime : int
|
||||||
|
リプレイするチャットデータの開始時間(秒)
|
||||||
|
|
||||||
|
processor : ChatProcessor
|
||||||
|
チャットデータを加工するオブジェクト
|
||||||
|
|
||||||
|
buffer : Buffer(maxsize:20[default])
|
||||||
|
チャットデータchat_componentを格納するバッファ。
|
||||||
|
maxsize : 格納できるchat_componentの個数
|
||||||
|
default値20個。1個で約5~10秒分。
|
||||||
|
|
||||||
|
interruptable : bool
|
||||||
|
Ctrl+Cによる処理中断を行うかどうか。
|
||||||
|
|
||||||
|
callback : func
|
||||||
|
_listen()関数から一定間隔で自動的に呼びだす関数。
|
||||||
|
|
||||||
|
done_callback : func
|
||||||
|
listener終了時に呼び出すコールバック。
|
||||||
|
|
||||||
|
exception_handler : func
|
||||||
|
例外を処理する関数
|
||||||
|
|
||||||
|
direct_mode : bool
|
||||||
|
Trueの場合、bufferを使わずにcallbackを呼ぶ。
|
||||||
|
Trueの場合、callbackの設定が必須
|
||||||
|
(設定していない場合IllegalFunctionCall例外を発生させる)
|
||||||
|
|
||||||
|
Attributes
|
||||||
|
---------
|
||||||
|
_is_alive : bool
|
||||||
|
チャット取得を停止するためのフラグ
|
||||||
|
'''
|
||||||
|
|
||||||
|
_setup_finished = False
|
||||||
|
|
||||||
|
def __init__(self, video_id,
|
||||||
|
seektime = 0,
|
||||||
|
processor = DefaultProcessor(),
|
||||||
|
buffer = None,
|
||||||
|
interruptable = True,
|
||||||
|
callback = None,
|
||||||
|
done_callback = None,
|
||||||
|
exception_handler = None,
|
||||||
|
direct_mode = False):
|
||||||
|
self.video_id = video_id
|
||||||
|
self.seektime = seektime
|
||||||
|
if isinstance(processor, tuple):
|
||||||
|
self.processor = Combinator(processor)
|
||||||
|
else:
|
||||||
|
self.processor = processor
|
||||||
|
self._buffer = buffer
|
||||||
|
self._callback = callback
|
||||||
|
self._done_callback = done_callback
|
||||||
|
self._exception_handler = exception_handler
|
||||||
|
self._direct_mode = direct_mode
|
||||||
|
self._is_alive = True
|
||||||
|
self._parser = Parser()
|
||||||
|
self._pauser = Queue()
|
||||||
|
self._pauser.put_nowait(None)
|
||||||
|
self._setup()
|
||||||
|
|
||||||
|
if not ReplayChatAsync._setup_finished:
|
||||||
|
ReplayChatAsync._setup_finished = True
|
||||||
|
if exception_handler == None:
|
||||||
|
self._set_exception_handler(self._handle_exception)
|
||||||
|
else:
|
||||||
|
self._set_exception_handler(exception_handler)
|
||||||
|
if interruptable:
|
||||||
|
signal.signal(signal.SIGINT,
|
||||||
|
(lambda a, b:asyncio.create_task(
|
||||||
|
ReplayChatAsync.shutdown(None,signal.SIGINT,b))
|
||||||
|
))
|
||||||
|
|
||||||
|
def _setup(self):
|
||||||
|
#direct modeがTrueでcallback未設定の場合例外発生。
|
||||||
|
if self._direct_mode:
|
||||||
|
if self._callback is None:
|
||||||
|
raise IllegalFunctionCall(
|
||||||
|
"direct_mode=Trueの場合callbackの設定が必須です。")
|
||||||
|
else:
|
||||||
|
#direct modeがFalseでbufferが未設定ならばデフォルトのbufferを作成
|
||||||
|
if self._buffer is None:
|
||||||
|
self._buffer = Buffer(maxsize = 20)
|
||||||
|
#callbackが指定されている場合はcallbackを呼ぶループタスクを作成
|
||||||
|
if self._callback is None:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
#callbackを呼ぶループタスクの開始
|
||||||
|
loop = asyncio.get_event_loop()
|
||||||
|
loop.create_task(self._callback_loop(self._callback))
|
||||||
|
#_listenループタスクの開始
|
||||||
|
loop = asyncio.get_event_loop()
|
||||||
|
listen_task = loop.create_task(self._startlisten())
|
||||||
|
#add_done_callbackの登録
|
||||||
|
if self._done_callback is None:
|
||||||
|
listen_task.add_done_callback(self.finish)
|
||||||
|
else:
|
||||||
|
listen_task.add_done_callback(self._done_callback)
|
||||||
|
|
||||||
|
async def _startlisten(self):
|
||||||
|
"""最初のcontinuationパラメータを取得し、
|
||||||
|
_listenループのタスクを作成し開始する
|
||||||
|
"""
|
||||||
|
initial_continuation = await self._get_initial_continuation()
|
||||||
|
if initial_continuation is None:
|
||||||
|
self.terminate()
|
||||||
|
logger.debug(f"[{self.video_id}]No initial continuation.")
|
||||||
|
return
|
||||||
|
await self._listen(initial_continuation)
|
||||||
|
|
||||||
|
async def _get_initial_continuation(self):
|
||||||
|
''' チャットデータ取得に必要な最初のcontinuationを取得する。'''
|
||||||
|
try:
|
||||||
|
initial_continuation = arcparam.get(self.video_id,self.seektime)
|
||||||
|
except ChatParseException as e:
|
||||||
|
self.terminate()
|
||||||
|
logger.debug(f"[{self.video_id}]Error:{str(e)}")
|
||||||
|
return
|
||||||
|
except KeyError:
|
||||||
|
logger.debug(f"[{self.video_id}]KeyError:"
|
||||||
|
f"{traceback.format_exc(limit = -1)}")
|
||||||
|
self.terminate()
|
||||||
|
return
|
||||||
|
return initial_continuation
|
||||||
|
|
||||||
|
async def _listen(self, continuation):
|
||||||
|
''' continuationに紐付いたチャットデータを取得し
|
||||||
|
Bufferにチャットデータを格納、
|
||||||
|
次のcontinuaitonを取得してループする。
|
||||||
|
|
||||||
|
Parameter
|
||||||
|
---------
|
||||||
|
continuation : str
|
||||||
|
次のチャットデータ取得に必要なパラメータ
|
||||||
|
'''
|
||||||
|
try:
|
||||||
|
async with aiohttp.ClientSession() as session:
|
||||||
|
while(continuation and self._is_alive):
|
||||||
|
if self._pauser.empty():
|
||||||
|
#pause
|
||||||
|
await self._pauser.get()
|
||||||
|
#resume
|
||||||
|
#prohibit from blocking by putting None into _pauser.
|
||||||
|
self._pauser.put_nowait(None)
|
||||||
|
livechat_json = (await
|
||||||
|
self._get_livechat_json(continuation, session, headers)
|
||||||
|
)
|
||||||
|
metadata, chatdata = self._parser.parse( livechat_json )
|
||||||
|
timeout = metadata['timeoutMs']/1000
|
||||||
|
chat_component = {
|
||||||
|
"video_id" : self.video_id,
|
||||||
|
"timeout" : timeout,
|
||||||
|
"chatdata" : chatdata
|
||||||
|
}
|
||||||
|
time_mark =time.time()
|
||||||
|
if self._direct_mode:
|
||||||
|
await self._callback(
|
||||||
|
self.processor.process([chat_component])
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
await self._buffer.put(chat_component)
|
||||||
|
diff_time = timeout - (time.time()-time_mark)
|
||||||
|
await asyncio.sleep(diff_time)
|
||||||
|
continuation = metadata.get('continuation')
|
||||||
|
except ChatParseException as e:
|
||||||
|
logger.error(f"{str(e)}(video_id:\"{self.video_id}\")")
|
||||||
|
return
|
||||||
|
except (TypeError , json.JSONDecodeError) :
|
||||||
|
logger.error(f"{traceback.format_exc(limit = -1)}")
|
||||||
|
self.terminate()
|
||||||
|
return
|
||||||
|
|
||||||
|
logger.debug(f"[{self.video_id}]チャット取得を終了しました。")
|
||||||
|
self.terminate()
|
||||||
|
|
||||||
|
async def _get_livechat_json(self, continuation, session, headers):
|
||||||
|
'''
|
||||||
|
チャットデータが格納されたjsonデータを取得する。
|
||||||
|
'''
|
||||||
|
continuation = urllib.parse.quote(continuation)
|
||||||
|
livechat_json = None
|
||||||
|
status_code = 0
|
||||||
|
url =(
|
||||||
|
f"https://www.youtube.com/live_chat_replay/get_live_chat_replay?"
|
||||||
|
f"continuation={continuation}&pbj=1")
|
||||||
|
for _ in range(MAX_RETRY + 1):
|
||||||
|
async with session.get(url ,headers = headers) as resp:
|
||||||
|
try:
|
||||||
|
text = await resp.text()
|
||||||
|
status_code = resp.status
|
||||||
|
livechat_json = json.loads(text)
|
||||||
|
break
|
||||||
|
except (ClientConnectorError,json.JSONDecodeError) :
|
||||||
|
await asyncio.sleep(1)
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
logger.error(f"[{self.video_id}]"
|
||||||
|
f"Exceeded retry count. status_code={status_code}")
|
||||||
|
return None
|
||||||
|
return livechat_json
|
||||||
|
|
||||||
|
async def _callback_loop(self,callback):
|
||||||
|
""" コンストラクタでcallbackを指定している場合、バックグラウンドで
|
||||||
|
callbackに指定された関数に一定間隔でチャットデータを投げる。
|
||||||
|
|
||||||
|
Parameter
|
||||||
|
---------
|
||||||
|
callback : func
|
||||||
|
加工済みのチャットデータを渡す先の関数。
|
||||||
|
"""
|
||||||
|
while self.is_alive():
|
||||||
|
items = await self._buffer.get()
|
||||||
|
data = self.processor.process(items)
|
||||||
|
await callback(data)
|
||||||
|
|
||||||
|
async def get(self):
|
||||||
|
""" bufferからデータを取り出し、processorに投げ、
|
||||||
|
加工済みのチャットデータを返す。
|
||||||
|
|
||||||
|
Returns
|
||||||
|
: Processorによって加工されたチャットデータ
|
||||||
|
"""
|
||||||
|
if self._callback is None:
|
||||||
|
items = await self._buffer.get()
|
||||||
|
return self.processor.process(items)
|
||||||
|
raise IllegalFunctionCall(
|
||||||
|
"既にcallbackを登録済みのため、get()は実行できません。")
|
||||||
|
|
||||||
|
def pause(self):
|
||||||
|
if not self._pauser.empty():
|
||||||
|
self._pauser.get()
|
||||||
|
|
||||||
|
def resume(self):
|
||||||
|
if self._pauser.empty():
|
||||||
|
self._pauser.put_nowait(None)
|
||||||
|
|
||||||
|
|
||||||
|
def is_alive(self):
|
||||||
|
return self._is_alive
|
||||||
|
|
||||||
|
def finish(self,sender):
|
||||||
|
'''Listener終了時のコールバック'''
|
||||||
|
try:
|
||||||
|
self.terminate()
|
||||||
|
except CancelledError:
|
||||||
|
logger.debug(f'[{self.video_id}]cancelled:{sender}')
|
||||||
|
|
||||||
|
def terminate(self):
|
||||||
|
'''
|
||||||
|
Listenerを終了する。
|
||||||
|
'''
|
||||||
|
self._is_alive = False
|
||||||
|
if self._direct_mode == False:
|
||||||
|
#bufferにダミーオブジェクトを入れてis_alive()を判定させる
|
||||||
|
self._buffer.put_nowait({'chatdata':'','timeout':1})
|
||||||
|
logger.info(f'[{self.video_id}]終了しました')
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def _set_exception_handler(cls, handler):
|
||||||
|
loop = asyncio.get_event_loop()
|
||||||
|
#default handler: cls._handle_exception
|
||||||
|
loop.set_exception_handler(handler)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def _handle_exception(cls, loop, context):
|
||||||
|
#msg = context.get("exception", context["message"])
|
||||||
|
if not isinstance(context["exception"],CancelledError):
|
||||||
|
logger.error(f"Caught exception: {context}")
|
||||||
|
loop= asyncio.get_event_loop()
|
||||||
|
loop.create_task(cls.shutdown(None,None,None))
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
async def shutdown(cls, event, sig = None, handler=None):
|
||||||
|
logger.debug("シャットダウンしています")
|
||||||
|
tasks = [t for t in asyncio.all_tasks() if t is not
|
||||||
|
asyncio.current_task()]
|
||||||
|
[task.cancel() for task in tasks]
|
||||||
|
|
||||||
|
logger.debug(f"残っているタスクを終了しています")
|
||||||
|
await asyncio.gather(*tasks,return_exceptions=True)
|
||||||
|
loop = asyncio.get_event_loop()
|
||||||
|
loop.stop()
|
||||||
@@ -3,7 +3,7 @@ import queue
|
|||||||
|
|
||||||
class Buffer(queue.Queue):
|
class Buffer(queue.Queue):
|
||||||
'''
|
'''
|
||||||
チャットデータを格納するバッファの役割を持つLIFOキュー
|
チャットデータを格納するバッファの役割を持つFIFOキュー
|
||||||
|
|
||||||
Parameter
|
Parameter
|
||||||
---------
|
---------
|
||||||
|
|||||||
@@ -3,23 +3,21 @@ import datetime
|
|||||||
import json
|
import json
|
||||||
import random
|
import random
|
||||||
import signal
|
import signal
|
||||||
import threading
|
|
||||||
import time
|
import time
|
||||||
import traceback
|
import traceback
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
from concurrent.futures import CancelledError, ThreadPoolExecutor
|
from concurrent.futures import CancelledError, ThreadPoolExecutor
|
||||||
from .buffer import Buffer
|
from .buffer import Buffer
|
||||||
from .parser import Parser
|
from ..parser.live import Parser
|
||||||
from .. import config
|
from .. import config
|
||||||
from .. import mylogger
|
|
||||||
from ..exceptions import ChatParseException,IllegalFunctionCall
|
from ..exceptions import ChatParseException,IllegalFunctionCall
|
||||||
from ..paramgen import liveparam
|
from ..paramgen import liveparam
|
||||||
from ..processors.default.processor import DefaultProcessor
|
from ..processors.default.processor import DefaultProcessor
|
||||||
|
from ..processors.combinator import Combinator
|
||||||
|
|
||||||
logger = mylogger.get_logger(__name__,mode=config.LOGGER_MODE)
|
logger = config.logger(__name__)
|
||||||
MAX_RETRY = 10
|
|
||||||
headers = config.headers
|
headers = config.headers
|
||||||
|
MAX_RETRY = 10
|
||||||
|
|
||||||
|
|
||||||
class LiveChat:
|
class LiveChat:
|
||||||
@@ -58,7 +56,7 @@ class LiveChat:
|
|||||||
チャットデータ取得ループ(_listen)用のスレッド
|
チャットデータ取得ループ(_listen)用のスレッド
|
||||||
|
|
||||||
_is_alive : bool
|
_is_alive : bool
|
||||||
チャット取得を終了したか
|
チャット取得を停止するためのフラグ
|
||||||
'''
|
'''
|
||||||
|
|
||||||
_setup_finished = False
|
_setup_finished = False
|
||||||
@@ -66,14 +64,17 @@ class LiveChat:
|
|||||||
_listeners= []
|
_listeners= []
|
||||||
def __init__(self, video_id,
|
def __init__(self, video_id,
|
||||||
processor = DefaultProcessor(),
|
processor = DefaultProcessor(),
|
||||||
buffer = Buffer(maxsize = 20),
|
buffer = None,
|
||||||
interruptable = True,
|
interruptable = True,
|
||||||
callback = None,
|
callback = None,
|
||||||
done_callback = None,
|
done_callback = None,
|
||||||
direct_mode = False
|
direct_mode = False
|
||||||
):
|
):
|
||||||
self.video_id = video_id
|
self.video_id = video_id
|
||||||
self.processor = processor
|
if isinstance(processor, tuple):
|
||||||
|
self.processor = Combinator(processor)
|
||||||
|
else:
|
||||||
|
self.processor = processor
|
||||||
self._buffer = buffer
|
self._buffer = buffer
|
||||||
self._callback = callback
|
self._callback = callback
|
||||||
self._done_callback = done_callback
|
self._done_callback = done_callback
|
||||||
@@ -143,8 +144,8 @@ class LiveChat:
|
|||||||
|
|
||||||
def _listen(self, continuation):
|
def _listen(self, continuation):
|
||||||
''' continuationに紐付いたチャットデータを取得し
|
''' continuationに紐付いたチャットデータを取得し
|
||||||
にチャットデータを格納、
|
Bufferにチャットデータを格納、
|
||||||
次のcontinuaitonを取得してループする
|
次のcontinuaitonを取得してループする。
|
||||||
|
|
||||||
Parameter
|
Parameter
|
||||||
---------
|
---------
|
||||||
@@ -158,7 +159,6 @@ class LiveChat:
|
|||||||
self._get_livechat_json(continuation, session, headers)
|
self._get_livechat_json(continuation, session, headers)
|
||||||
)
|
)
|
||||||
metadata, chatdata = self._parser.parse( livechat_json )
|
metadata, chatdata = self._parser.parse( livechat_json )
|
||||||
#チャットデータを含むコンポーネントを組み立ててbufferに投入する
|
|
||||||
timeout = metadata['timeoutMs']/1000
|
timeout = metadata['timeoutMs']/1000
|
||||||
chat_component = {
|
chat_component = {
|
||||||
"video_id" : self.video_id,
|
"video_id" : self.video_id,
|
||||||
@@ -172,18 +172,16 @@ class LiveChat:
|
|||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
self._buffer.put(chat_component)
|
self._buffer.put(chat_component)
|
||||||
#次のchatを取得するまでsleepする
|
|
||||||
diff_time = timeout - (time.time()-time_mark)
|
diff_time = timeout - (time.time()-time_mark)
|
||||||
if diff_time < 0 : diff_time=0
|
if diff_time < 0 : diff_time=0
|
||||||
time.sleep(diff_time)
|
time.sleep(diff_time)
|
||||||
#次のチャットデータのcontinuationパラメータを取り出す。
|
|
||||||
continuation = metadata.get('continuation')
|
continuation = metadata.get('continuation')
|
||||||
|
|
||||||
#whileループ先頭に戻る
|
|
||||||
except ChatParseException as e:
|
except ChatParseException as e:
|
||||||
logger.error(f"{str(e)}(動画ID:\"{self.video_id}\")")
|
self.terminate()
|
||||||
|
logger.error(f"{str(e)}(video_id:\"{self.video_id}\")")
|
||||||
return
|
return
|
||||||
except (TypeError , json.JSONDecodeError) :
|
except (TypeError , json.JSONDecodeError) :
|
||||||
|
self.terminate()
|
||||||
logger.error(f"{traceback.format_exc(limit = -1)}")
|
logger.error(f"{traceback.format_exc(limit = -1)}")
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -212,6 +210,7 @@ class LiveChat:
|
|||||||
else:
|
else:
|
||||||
logger.error(f"[{self.video_id}]"
|
logger.error(f"[{self.video_id}]"
|
||||||
f"Exceeded retry count. status_code={status_code}")
|
f"Exceeded retry count. status_code={status_code}")
|
||||||
|
self.terminate()
|
||||||
return None
|
return None
|
||||||
return livechat_json
|
return livechat_json
|
||||||
|
|
||||||
@@ -260,18 +259,10 @@ class LiveChat:
|
|||||||
if self._direct_mode == False:
|
if self._direct_mode == False:
|
||||||
#bufferにダミーオブジェクトを入れてis_alive()を判定させる
|
#bufferにダミーオブジェクトを入れてis_alive()を判定させる
|
||||||
self._buffer.put({'chatdata':'','timeout':1})
|
self._buffer.put({'chatdata':'','timeout':1})
|
||||||
logger.info(f'終了しました:[{self.video_id}]')
|
logger.info(f'[{self.video_id}]終了しました')
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def shutdown(cls, event, sig = None, handler=None):
|
def shutdown(cls, event, sig = None, handler=None):
|
||||||
logger.debug("シャットダウンしています")
|
logger.debug("シャットダウンしています")
|
||||||
for t in LiveChat._listeners:
|
for t in LiveChat._listeners:
|
||||||
t._is_alive = False
|
t._is_alive = False
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
292
pytchat/core_multithread/replaychat.py
Normal file
292
pytchat/core_multithread/replaychat.py
Normal file
@@ -0,0 +1,292 @@
|
|||||||
|
import requests
|
||||||
|
import datetime
|
||||||
|
import json
|
||||||
|
import random
|
||||||
|
import signal
|
||||||
|
import time
|
||||||
|
import traceback
|
||||||
|
import urllib.parse
|
||||||
|
from concurrent.futures import CancelledError, ThreadPoolExecutor
|
||||||
|
from queue import Queue
|
||||||
|
from .buffer import Buffer
|
||||||
|
from ..parser.replay import Parser
|
||||||
|
from .. import config
|
||||||
|
from ..exceptions import ChatParseException,IllegalFunctionCall
|
||||||
|
from ..paramgen import arcparam
|
||||||
|
from ..processors.default.processor import DefaultProcessor
|
||||||
|
from ..processors.combinator import Combinator
|
||||||
|
|
||||||
|
logger = config.logger(__name__)
|
||||||
|
headers = config.headers
|
||||||
|
MAX_RETRY = 10
|
||||||
|
|
||||||
|
|
||||||
|
class ReplayChat:
|
||||||
|
''' スレッドプールを利用してYouTubeのライブ配信のチャットデータを取得する
|
||||||
|
|
||||||
|
Parameter
|
||||||
|
---------
|
||||||
|
video_id : str
|
||||||
|
動画ID
|
||||||
|
|
||||||
|
seektime : int
|
||||||
|
リプレイするチャットデータの開始時間(秒)
|
||||||
|
|
||||||
|
processor : ChatProcessor
|
||||||
|
チャットデータを加工するオブジェクト
|
||||||
|
|
||||||
|
buffer : Buffer(maxsize:20[default])
|
||||||
|
チャットデータchat_componentを格納するバッファ。
|
||||||
|
maxsize : 格納できるchat_componentの個数
|
||||||
|
default値20個。1個で約5~10秒分。
|
||||||
|
|
||||||
|
interruptable : bool
|
||||||
|
Ctrl+Cによる処理中断を行うかどうか。
|
||||||
|
|
||||||
|
callback : func
|
||||||
|
_listen()関数から一定間隔で自動的に呼びだす関数。
|
||||||
|
|
||||||
|
done_callback : func
|
||||||
|
listener終了時に呼び出すコールバック。
|
||||||
|
|
||||||
|
direct_mode : bool
|
||||||
|
Trueの場合、bufferを使わずにcallbackを呼ぶ。
|
||||||
|
Trueの場合、callbackの設定が必須
|
||||||
|
(設定していない場合IllegalFunctionCall例外を発生させる)
|
||||||
|
|
||||||
|
Attributes
|
||||||
|
---------
|
||||||
|
_executor : ThreadPoolExecutor
|
||||||
|
チャットデータ取得ループ(_listen)用のスレッド
|
||||||
|
|
||||||
|
_is_alive : bool
|
||||||
|
チャット取得を停止するためのフラグ
|
||||||
|
'''
|
||||||
|
|
||||||
|
_setup_finished = False
|
||||||
|
#チャット監視中のListenerのリスト
|
||||||
|
_listeners= []
|
||||||
|
def __init__(self, video_id,
|
||||||
|
seektime = 0,
|
||||||
|
processor = DefaultProcessor(),
|
||||||
|
buffer = None,
|
||||||
|
interruptable = True,
|
||||||
|
callback = None,
|
||||||
|
done_callback = None,
|
||||||
|
direct_mode = False
|
||||||
|
):
|
||||||
|
self.video_id = video_id
|
||||||
|
self.seektime = seektime
|
||||||
|
if isinstance(processor, tuple):
|
||||||
|
self.processor = Combinator(processor)
|
||||||
|
else:
|
||||||
|
self.processor = processor
|
||||||
|
self._buffer = buffer
|
||||||
|
self._callback = callback
|
||||||
|
self._done_callback = done_callback
|
||||||
|
self._executor = ThreadPoolExecutor(max_workers=2)
|
||||||
|
self._direct_mode = direct_mode
|
||||||
|
self._is_alive = True
|
||||||
|
self._parser = Parser()
|
||||||
|
self._pauser = Queue()
|
||||||
|
self._pauser.put_nowait(None)
|
||||||
|
|
||||||
|
self._setup()
|
||||||
|
|
||||||
|
if not ReplayChat._setup_finished:
|
||||||
|
ReplayChat._setup_finished = True
|
||||||
|
if interruptable:
|
||||||
|
signal.signal(signal.SIGINT, (lambda a, b:
|
||||||
|
(ReplayChat.shutdown(None,signal.SIGINT,b))
|
||||||
|
))
|
||||||
|
ReplayChat._listeners.append(self)
|
||||||
|
|
||||||
|
def _setup(self):
|
||||||
|
#direct modeがTrueでcallback未設定の場合例外発生。
|
||||||
|
if self._direct_mode:
|
||||||
|
if self._callback is None:
|
||||||
|
raise IllegalFunctionCall(
|
||||||
|
"direct_mode=Trueの場合callbackの設定が必須です。")
|
||||||
|
else:
|
||||||
|
#direct modeがFalseでbufferが未設定ならばデフォルトのbufferを作成
|
||||||
|
if self._buffer is None:
|
||||||
|
self._buffer = Buffer(maxsize = 20)
|
||||||
|
#callbackが指定されている場合はcallbackを呼ぶループタスクを作成
|
||||||
|
if self._callback is None:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
#callbackを呼ぶループタスクの開始
|
||||||
|
self._executor.submit(self._callback_loop,self._callback)
|
||||||
|
#_listenループタスクの開始
|
||||||
|
listen_task = self._executor.submit(self._startlisten)
|
||||||
|
#add_done_callbackの登録
|
||||||
|
if self._done_callback is None:
|
||||||
|
listen_task.add_done_callback(self.finish)
|
||||||
|
else:
|
||||||
|
listen_task.add_done_callback(self._done_callback)
|
||||||
|
|
||||||
|
def _startlisten(self):
|
||||||
|
"""最初のcontinuationパラメータを取得し、
|
||||||
|
_listenループのタスクを作成し開始する
|
||||||
|
"""
|
||||||
|
initial_continuation = self._get_initial_continuation()
|
||||||
|
if initial_continuation is None:
|
||||||
|
self.terminate()
|
||||||
|
logger.debug(f"[{self.video_id}]No initial continuation.")
|
||||||
|
return
|
||||||
|
self._listen(initial_continuation)
|
||||||
|
|
||||||
|
def _get_initial_continuation(self):
|
||||||
|
''' チャットデータ取得に必要な最初のcontinuationを取得する。'''
|
||||||
|
try:
|
||||||
|
initial_continuation = arcparam.get(self.video_id,self.seektime)
|
||||||
|
except ChatParseException as e:
|
||||||
|
self.terminate()
|
||||||
|
logger.debug(f"[{self.video_id}]Error:{str(e)}")
|
||||||
|
return
|
||||||
|
except KeyError:
|
||||||
|
logger.debug(f"[{self.video_id}]KeyError:"
|
||||||
|
f"{traceback.format_exc(limit = -1)}")
|
||||||
|
self.terminate()
|
||||||
|
return
|
||||||
|
return initial_continuation
|
||||||
|
|
||||||
|
def _listen(self, continuation):
|
||||||
|
''' continuationに紐付いたチャットデータを取得し
|
||||||
|
BUfferにチャットデータを格納、
|
||||||
|
次のcontinuaitonを取得してループする
|
||||||
|
|
||||||
|
Parameter
|
||||||
|
---------
|
||||||
|
continuation : str
|
||||||
|
次のチャットデータ取得に必要なパラメータ
|
||||||
|
'''
|
||||||
|
try:
|
||||||
|
with requests.Session() as session:
|
||||||
|
while(continuation and self._is_alive):
|
||||||
|
if self._pauser.empty():
|
||||||
|
#pause
|
||||||
|
self._pauser.get()
|
||||||
|
#resume
|
||||||
|
#prohibit from blocking by putting None into _pauser.
|
||||||
|
self._pauser.put_nowait(None)
|
||||||
|
livechat_json = (
|
||||||
|
self._get_livechat_json(continuation, session, headers)
|
||||||
|
)
|
||||||
|
metadata, chatdata = self._parser.parse( livechat_json )
|
||||||
|
timeout = metadata['timeoutMs']/1000
|
||||||
|
chat_component = {
|
||||||
|
"video_id" : self.video_id,
|
||||||
|
"timeout" : timeout,
|
||||||
|
"chatdata" : chatdata
|
||||||
|
}
|
||||||
|
time_mark =time.time()
|
||||||
|
if self._direct_mode:
|
||||||
|
self._callback(
|
||||||
|
self.processor.process([chat_component])
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
self._buffer.put(chat_component)
|
||||||
|
diff_time = timeout - (time.time()-time_mark)
|
||||||
|
if diff_time < 0 : diff_time=0
|
||||||
|
time.sleep(diff_time)
|
||||||
|
continuation = metadata.get('continuation')
|
||||||
|
except ChatParseException as e:
|
||||||
|
self.terminate()
|
||||||
|
logger.error(f"{str(e)}(video_id:\"{self.video_id}\")")
|
||||||
|
return
|
||||||
|
except (TypeError , json.JSONDecodeError) :
|
||||||
|
self.terminate()
|
||||||
|
logger.error(f"{traceback.format_exc(limit = -1)}")
|
||||||
|
return
|
||||||
|
|
||||||
|
logger.debug(f"[{self.video_id}]チャット取得を終了しました。")
|
||||||
|
|
||||||
|
def _get_livechat_json(self, continuation, session, headers):
|
||||||
|
'''
|
||||||
|
チャットデータが格納されたjsonデータを取得する。
|
||||||
|
'''
|
||||||
|
continuation = urllib.parse.quote(continuation)
|
||||||
|
livechat_json = None
|
||||||
|
status_code = 0
|
||||||
|
url =(
|
||||||
|
f"https://www.youtube.com/live_chat_replay/get_live_chat_replay?"
|
||||||
|
f"continuation={continuation}&pbj=1")
|
||||||
|
for _ in range(MAX_RETRY + 1):
|
||||||
|
with session.get(url ,headers = headers) as resp:
|
||||||
|
try:
|
||||||
|
text = resp.text
|
||||||
|
status_code = resp.status_code
|
||||||
|
livechat_json = json.loads(text)
|
||||||
|
break
|
||||||
|
except json.JSONDecodeError :
|
||||||
|
time.sleep(1)
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
logger.error(f"[{self.video_id}]"
|
||||||
|
f"Exceeded retry count. status_code={status_code}")
|
||||||
|
self.terminate()
|
||||||
|
return None
|
||||||
|
return livechat_json
|
||||||
|
|
||||||
|
def _callback_loop(self,callback):
|
||||||
|
""" コンストラクタでcallbackを指定している場合、バックグラウンドで
|
||||||
|
callbackに指定された関数に一定間隔でチャットデータを投げる。
|
||||||
|
|
||||||
|
Parameter
|
||||||
|
---------
|
||||||
|
callback : func
|
||||||
|
加工済みのチャットデータを渡す先の関数。
|
||||||
|
"""
|
||||||
|
while self.is_alive():
|
||||||
|
items = self._buffer.get()
|
||||||
|
data = self.processor.process(items)
|
||||||
|
callback(data)
|
||||||
|
|
||||||
|
def get(self):
|
||||||
|
""" bufferからデータを取り出し、processorに投げ、
|
||||||
|
加工済みのチャットデータを返す。
|
||||||
|
|
||||||
|
Returns
|
||||||
|
: Processorによって加工されたチャットデータ
|
||||||
|
"""
|
||||||
|
if self._callback is None:
|
||||||
|
items = self._buffer.get()
|
||||||
|
return self.processor.process(items)
|
||||||
|
raise IllegalFunctionCall(
|
||||||
|
"既にcallbackを登録済みのため、get()は実行できません。")
|
||||||
|
|
||||||
|
def pause(self):
|
||||||
|
if not self._pauser.empty():
|
||||||
|
self._pauser.get()
|
||||||
|
|
||||||
|
def resume(self):
|
||||||
|
if self._pauser.empty():
|
||||||
|
self._pauser.put_nowait(None)
|
||||||
|
|
||||||
|
|
||||||
|
def is_alive(self):
|
||||||
|
return self._is_alive
|
||||||
|
|
||||||
|
def finish(self,sender):
|
||||||
|
'''Listener終了時のコールバック'''
|
||||||
|
try:
|
||||||
|
self.terminate()
|
||||||
|
except RuntimeError:
|
||||||
|
logger.debug(f'[{self.video_id}]cancelled:{sender}')
|
||||||
|
|
||||||
|
def terminate(self):
|
||||||
|
'''
|
||||||
|
Listenerを終了する。
|
||||||
|
'''
|
||||||
|
self._is_alive = False
|
||||||
|
if self._direct_mode == False:
|
||||||
|
#bufferにダミーオブジェクトを入れてis_alive()を判定させる
|
||||||
|
self._buffer.put({'chatdata':'','timeout':1})
|
||||||
|
logger.info(f'[{self.video_id}]終了しました')
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def shutdown(cls, event, sig = None, handler=None):
|
||||||
|
logger.debug("シャットダウンしています")
|
||||||
|
for t in ReplayChat._listeners:
|
||||||
|
t._is_alive = False
|
||||||
@@ -17,7 +17,7 @@ def get_logger(modname,mode=logging.DEBUG):
|
|||||||
logger.addHandler(handler1)
|
logger.addHandler(handler1)
|
||||||
#create handler2 for recording log file
|
#create handler2 for recording log file
|
||||||
if mode <= logging.DEBUG:
|
if mode <= logging.DEBUG:
|
||||||
handler2 = logging.FileHandler(filename="log.txt")
|
handler2 = logging.FileHandler(filename="log.txt", encoding='utf-8')
|
||||||
handler2.setLevel(logging.ERROR)
|
handler2.setLevel(logging.ERROR)
|
||||||
handler2.setFormatter(my_formatter)
|
handler2.setFormatter(my_formatter)
|
||||||
|
|
||||||
|
|||||||
120
pytchat/paramgen/arcparam.py
Normal file
120
pytchat/paramgen/arcparam.py
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
from base64 import urlsafe_b64encode as b64enc
|
||||||
|
from functools import reduce
|
||||||
|
import calendar, datetime, pytz
|
||||||
|
import math
|
||||||
|
import random
|
||||||
|
import urllib.parse
|
||||||
|
|
||||||
|
'''
|
||||||
|
Generate continuation parameter of youtube replay chat.
|
||||||
|
|
||||||
|
Author: taizan-hokuto (2019) @taizan205
|
||||||
|
|
||||||
|
ver 0.0.1 2019.10.05
|
||||||
|
'''
|
||||||
|
|
||||||
|
def _gen_vid(video_id):
|
||||||
|
"""generate video_id parameter.
|
||||||
|
Parameter
|
||||||
|
---------
|
||||||
|
video_id : str
|
||||||
|
|
||||||
|
Return
|
||||||
|
---------
|
||||||
|
byte[] : base64 encoded video_id parameter.
|
||||||
|
"""
|
||||||
|
header_magic = b'\x0A\x0F\x1A\x0D\x0A'
|
||||||
|
header_id = video_id.encode()
|
||||||
|
header_sep_1 = b'\x1A\x13\xEA\xA8\xDD\xB9\x01\x0D\x0A\x0B'
|
||||||
|
header_terminator = b'\x20\x01'
|
||||||
|
|
||||||
|
item = [
|
||||||
|
header_magic,
|
||||||
|
_nval(len(header_id)),
|
||||||
|
header_id,
|
||||||
|
header_sep_1,
|
||||||
|
header_id,
|
||||||
|
header_terminator
|
||||||
|
]
|
||||||
|
|
||||||
|
return urllib.parse.quote(
|
||||||
|
b64enc(reduce(lambda x, y: x+y, item)).decode()
|
||||||
|
).encode()
|
||||||
|
|
||||||
|
def _nval(val):
|
||||||
|
"""convert value to byte array"""
|
||||||
|
if val<0: raise ValueError
|
||||||
|
buf = b''
|
||||||
|
while val >> 7:
|
||||||
|
m = val & 0xFF | 0x80
|
||||||
|
buf += m.to_bytes(1,'big')
|
||||||
|
val >>= 7
|
||||||
|
buf += val.to_bytes(1,'big')
|
||||||
|
return buf
|
||||||
|
|
||||||
|
|
||||||
|
def _tzparity(video_id,times):
|
||||||
|
t=0
|
||||||
|
for i,s in enumerate(video_id):
|
||||||
|
ss = ord(s)
|
||||||
|
if(ss % 2 == 0):
|
||||||
|
t += ss*(12-i)
|
||||||
|
else:
|
||||||
|
t ^= ss*i
|
||||||
|
|
||||||
|
return ((times^t) % 2).to_bytes(1,'big')
|
||||||
|
|
||||||
|
|
||||||
|
def get(video_id, seektime = 0, topchatonly = False):
|
||||||
|
switch_01 = b'\x04' if topchatonly else b'\x01'
|
||||||
|
|
||||||
|
|
||||||
|
if seektime < 0:
|
||||||
|
raise ValueError('seektime is 0 or positive number.')
|
||||||
|
if seektime == 0:
|
||||||
|
times =_nval(1)
|
||||||
|
switch = b'\x04'
|
||||||
|
else:
|
||||||
|
times =_nval(int(seektime*1000000))
|
||||||
|
switch = b'\x03'
|
||||||
|
parity = _tzparity(video_id, seektime)
|
||||||
|
|
||||||
|
header_magic= b'\xA2\x9D\xB0\xD3\x04'
|
||||||
|
sep_0 = b'\x1A'
|
||||||
|
vid = _gen_vid(video_id)
|
||||||
|
time_tag = b'\x28'
|
||||||
|
timestamp1 = times
|
||||||
|
sep_1 = b'\x30\x00\x38\x00\x40\x00\x48'
|
||||||
|
sep_2 = b'\x52\x1C\x08\x00\x10\x00\x18\x00\x20\x00'
|
||||||
|
chkstr = b'\x2A\x0E\x73\x74\x61\x74\x69\x63\x63\x68\x65\x63\x6B\x73\x75\x6D\x40'
|
||||||
|
sep_3 = b'\x00\x58\x03\x60'
|
||||||
|
sep_4 = b'\x68'+parity+b'\x72\x04\x08'
|
||||||
|
sep_5 = b'\x10'+parity+b'\x78\x00'
|
||||||
|
body = [
|
||||||
|
sep_0,
|
||||||
|
_nval(len(vid)),
|
||||||
|
vid,
|
||||||
|
time_tag,
|
||||||
|
timestamp1,
|
||||||
|
sep_1,
|
||||||
|
switch,
|
||||||
|
sep_2,
|
||||||
|
chkstr,
|
||||||
|
sep_3,
|
||||||
|
switch_01,
|
||||||
|
sep_4,
|
||||||
|
switch_01,
|
||||||
|
sep_5
|
||||||
|
]
|
||||||
|
|
||||||
|
body = reduce(lambda x, y: x+y, body)
|
||||||
|
|
||||||
|
return urllib.parse.quote(
|
||||||
|
b64enc( header_magic +
|
||||||
|
_nval(len(body)) +
|
||||||
|
body
|
||||||
|
).decode()
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,11 +1,16 @@
|
|||||||
from base64 import urlsafe_b64encode as b64enc
|
from base64 import urlsafe_b64encode as b64enc
|
||||||
from functools import reduce
|
from functools import reduce
|
||||||
import calendar, datetime, pytz
|
import calendar, datetime, pytz
|
||||||
import math
|
|
||||||
import random
|
import random
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
|
|
||||||
|
'''
|
||||||
|
Generate continuation parameter of youtube live chat.
|
||||||
|
|
||||||
|
Author: taizan-hokuto (2019) @taizan205
|
||||||
|
|
||||||
|
ver 0.0.1 2019.10.05
|
||||||
|
'''
|
||||||
def _gen_vid(video_id):
|
def _gen_vid(video_id):
|
||||||
"""generate video_id parameter.
|
"""generate video_id parameter.
|
||||||
Parameter
|
Parameter
|
||||||
@@ -39,6 +44,17 @@ def _gen_vid(video_id):
|
|||||||
b64enc(reduce(lambda x, y: x+y, item)).decode()
|
b64enc(reduce(lambda x, y: x+y, item)).decode()
|
||||||
).encode()
|
).encode()
|
||||||
|
|
||||||
|
def _tzparity(video_id,times):
|
||||||
|
t=0
|
||||||
|
for i,s in enumerate(video_id):
|
||||||
|
ss = ord(s)
|
||||||
|
if(ss % 2 == 0):
|
||||||
|
t += ss*(12-i)
|
||||||
|
else:
|
||||||
|
t ^= ss*i
|
||||||
|
|
||||||
|
return ((times^t) % 2).to_bytes(1,'big')
|
||||||
|
|
||||||
def _nval(val):
|
def _nval(val):
|
||||||
"""convert value to byte array"""
|
"""convert value to byte array"""
|
||||||
if val<0: raise ValueError
|
if val<0: raise ValueError
|
||||||
@@ -53,15 +69,16 @@ def _nval(val):
|
|||||||
def _build(video_id, _ts1, _ts2, _ts3, _ts4, _ts5, topchatonly = False):
|
def _build(video_id, _ts1, _ts2, _ts3, _ts4, _ts5, topchatonly = False):
|
||||||
#_short_type2
|
#_short_type2
|
||||||
switch_01 = b'\x04' if topchatonly else b'\x01'
|
switch_01 = b'\x04' if topchatonly else b'\x01'
|
||||||
header_magic= b'\xD2\x87\xCC\xC8\x03'
|
parity = _tzparity(video_id, _ts1^_ts2^_ts3^_ts4^_ts5)
|
||||||
|
|
||||||
|
header_magic= b'\xD2\x87\xCC\xC8\x03'
|
||||||
sep_0 = b'\x1A'
|
sep_0 = b'\x1A'
|
||||||
vid = _gen_vid(video_id)
|
vid = _gen_vid(video_id)
|
||||||
time_tag = b'\x28'
|
time_tag = b'\x28'
|
||||||
timestamp1 = _nval(_ts1)
|
timestamp1 = _nval(_ts1)
|
||||||
sep_1 = b'\x30\x00\x38\x00\x40\x02\x4A'
|
sep_1 = b'\x30\x00\x38\x00\x40\x02\x4A'
|
||||||
un_len = b'\x2B'
|
un_len = b'\x2B'
|
||||||
sep_2 = b'\x08\x00\x10\x00\x18\x00\x20\x00'
|
sep_2 = b'\x08'+parity+b'\x10\x00\x18\x00\x20\x00'
|
||||||
chkstr = b'\x2A\x0E\x73\x74\x61\x74\x69\x63\x63\x68\x65\x63\x6B\x73\x75\x6D'
|
chkstr = b'\x2A\x0E\x73\x74\x61\x74\x69\x63\x63\x68\x65\x63\x6B\x73\x75\x6D'
|
||||||
sep_3 = b'\x3A\x00\x40\x00\x4A'
|
sep_3 = b'\x3A\x00\x40\x00\x4A'
|
||||||
sep_4_len = b'\x02'
|
sep_4_len = b'\x02'
|
||||||
|
|||||||
0
pytchat/parser/__init__.py
Normal file
0
pytchat/parser/__init__.py
Normal file
@@ -1,17 +1,43 @@
|
|||||||
|
"""
|
||||||
|
pytchat.parser.live
|
||||||
|
~~~~~~~~~~~~~~~~~~~
|
||||||
|
This module is parser of live chat JSON.
|
||||||
|
"""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
from .. import config
|
from .. import config
|
||||||
from .. import mylogger
|
|
||||||
from .. exceptions import (
|
from .. exceptions import (
|
||||||
ResponseContextError,
|
ResponseContextError,
|
||||||
NoContentsException,
|
NoContentsException,
|
||||||
NoContinuationsException )
|
NoContinuationsException )
|
||||||
|
|
||||||
|
|
||||||
logger = mylogger.get_logger(__name__,mode=config.LOGGER_MODE)
|
logger = config.logger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class Parser:
|
class Parser:
|
||||||
def parse(self, jsn):
|
def parse(self, jsn):
|
||||||
|
"""
|
||||||
|
このparse関数はLiveChat._listen() 関数から定期的に呼び出される。
|
||||||
|
引数jsnはYoutubeから取得したチャットデータの生JSONであり、
|
||||||
|
このparse関数によって与えられたJSONを以下に分割して返す。
|
||||||
|
+ timeout (次のチャットデータ取得までのインターバル)
|
||||||
|
+ chat data(チャットデータ本体)
|
||||||
|
+ continuation (次のチャットデータ取得に必要となるパラメータ).
|
||||||
|
|
||||||
|
Parameter
|
||||||
|
----------
|
||||||
|
+ jsn : dict
|
||||||
|
+ Youtubeから取得したチャットデータのJSONオブジェクト。
|
||||||
|
(pythonの辞書形式に変換済みの状態で渡される)
|
||||||
|
|
||||||
|
Returns
|
||||||
|
-------
|
||||||
|
+ metadata : dict
|
||||||
|
+ チャットデータに付随するメタデータ。timeout、 動画ID、continuationパラメータで構成される。
|
||||||
|
+ chatdata : list[dict]
|
||||||
|
+ チャットデータ本体のリスト。
|
||||||
|
"""
|
||||||
if jsn is None:
|
if jsn is None:
|
||||||
return {'timeoutMs':0,'continuation':None},[]
|
return {'timeoutMs':0,'continuation':None},[]
|
||||||
if jsn['response']['responseContext'].get('errors'):
|
if jsn['response']['responseContext'].get('errors'):
|
||||||
@@ -32,7 +58,7 @@ class Parser:
|
|||||||
if metadata is None:
|
if metadata is None:
|
||||||
unknown = list(cont.keys())[0]
|
unknown = list(cont.keys())[0]
|
||||||
if unknown:
|
if unknown:
|
||||||
logger.error(f"Received unknown continuation type:{unknown}")
|
logger.debug(f"Received unknown continuation type:{unknown}")
|
||||||
metadata = cont.get(unknown)
|
metadata = cont.get(unknown)
|
||||||
metadata.setdefault('timeoutMs', 10000)
|
metadata.setdefault('timeoutMs', 10000)
|
||||||
chatdata = contents['liveChatContinuation'].get('actions')
|
chatdata = contents['liveChatContinuation'].get('actions')
|
||||||
76
pytchat/parser/replay.py
Normal file
76
pytchat/parser/replay.py
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
import json
|
||||||
|
from .. import config
|
||||||
|
from .. exceptions import (
|
||||||
|
ResponseContextError,
|
||||||
|
NoContentsException,
|
||||||
|
NoContinuationsException )
|
||||||
|
|
||||||
|
|
||||||
|
logger = config.logger(__name__)
|
||||||
|
|
||||||
|
class Parser:
|
||||||
|
def parse(self, jsn):
|
||||||
|
"""
|
||||||
|
このparse関数はReplayChat._listen() 関数から定期的に呼び出される。
|
||||||
|
引数jsnはYoutubeから取得したアーカイブ済みチャットデータの生JSONであり、
|
||||||
|
このparse関数によって与えられたJSONを以下に分割して返す。
|
||||||
|
+ timeout (次のチャットデータ取得までのインターバル)
|
||||||
|
+ chat data(チャットデータ本体)
|
||||||
|
+ continuation (次のチャットデータ取得に必要となるパラメータ).
|
||||||
|
|
||||||
|
ライブ配信のチャットとアーカイブ済み動画のチャットは構造が若干異なっているが、
|
||||||
|
ライブチャットと同じデータ形式に変換することにより、
|
||||||
|
同じprocessorでライブとリプレイどちらでも利用できるようにしている。
|
||||||
|
|
||||||
|
Parameter
|
||||||
|
----------
|
||||||
|
+ jsn : dict
|
||||||
|
+ Youtubeから取得したチャットデータのJSONオブジェクト。
|
||||||
|
(pythonの辞書形式に変換済みの状態で渡される)
|
||||||
|
|
||||||
|
Returns
|
||||||
|
-------
|
||||||
|
+ metadata : dict
|
||||||
|
+ チャットデータに付随するメタデータ。timeout、 動画ID、continuationパラメータで構成される。
|
||||||
|
+ chatdata : list[dict]
|
||||||
|
+ チャットデータ本体のリスト。
|
||||||
|
"""
|
||||||
|
if jsn is None:
|
||||||
|
return {'timeoutMs':0,'continuation':None},[]
|
||||||
|
if jsn['response']['responseContext'].get('errors'):
|
||||||
|
raise ResponseContextError('動画に接続できません。'
|
||||||
|
'動画IDが間違っているか、動画が削除/非公開の可能性があります。')
|
||||||
|
contents=jsn['response'].get('continuationContents')
|
||||||
|
#配信が終了した場合、もしくはチャットデータが取得できない場合
|
||||||
|
if contents is None:
|
||||||
|
raise NoContentsException('チャットデータを取得できませんでした。')
|
||||||
|
|
||||||
|
cont = contents['liveChatContinuation']['continuations'][0]
|
||||||
|
if cont is None:
|
||||||
|
raise NoContinuationsException('Continuationがありません。')
|
||||||
|
metadata = cont.get('liveChatReplayContinuationData')
|
||||||
|
if metadata is None:
|
||||||
|
unknown = list(cont.keys())[0]
|
||||||
|
if unknown != "playerSeekContinuationData":
|
||||||
|
logger.debug(f"Received unknown continuation type:{unknown}")
|
||||||
|
metadata = cont.get(unknown)
|
||||||
|
actions = contents['liveChatContinuation'].get('actions')
|
||||||
|
if actions is None:
|
||||||
|
#後続のチャットデータなし
|
||||||
|
return {"continuation":None,"timeout":0,"chatdata":[]}
|
||||||
|
interval = self.get_interval(actions)
|
||||||
|
metadata.setdefault("timeoutMs",interval)
|
||||||
|
"""アーカイブ済みチャットはライブチャットと構造が異なっているため、以下の行により
|
||||||
|
ライブチャットと同じ形式にそろえる"""
|
||||||
|
chatdata = [action["replayChatItemAction"]["actions"][0] for action in actions]
|
||||||
|
return metadata, chatdata
|
||||||
|
|
||||||
|
def get_interval(self, actions: list):
|
||||||
|
if actions is None:
|
||||||
|
return 0
|
||||||
|
start = int(actions[0]["replayChatItemAction"]["videoOffsetTimeMsec"])
|
||||||
|
last = int(actions[-1]["replayChatItemAction"]["videoOffsetTimeMsec"])
|
||||||
|
return (last - start)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -5,18 +5,19 @@ class ChatProcessor:
|
|||||||
'''
|
'''
|
||||||
def process(self, chat_components: list):
|
def process(self, chat_components: list):
|
||||||
'''
|
'''
|
||||||
チャットデータの加工を表すインターフェース
|
チャットデータの加工を表すインターフェース。
|
||||||
Listenerから呼び出される。
|
LiveChatオブジェクトから呼び出される。
|
||||||
|
|
||||||
Parameter
|
Parameter
|
||||||
----------
|
----------
|
||||||
chat_components: list<component>
|
chat_components: List[component]
|
||||||
component : dict {
|
component : dict {
|
||||||
"video_id" : str
|
"video_id" : str
|
||||||
動画ID
|
動画ID
|
||||||
"timeout" : int
|
"timeout" : int
|
||||||
次のチャットの再読み込みまでの時間(秒)
|
次のチャットの再読み込みまでの時間(秒)
|
||||||
"chatdata" : list<object>
|
"chatdata" : List[dict]
|
||||||
チャットデータ(actions)のリスト
|
チャットデータのリスト
|
||||||
}
|
}
|
||||||
'''
|
'''
|
||||||
pass
|
pass
|
||||||
|
|||||||
39
pytchat/processors/combinator.py
Normal file
39
pytchat/processors/combinator.py
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
from .chat_processor import ChatProcessor
|
||||||
|
|
||||||
|
class Combinator(ChatProcessor):
|
||||||
|
'''
|
||||||
|
Combinator combines multiple chat processors.
|
||||||
|
Specify processors as tuple at `processor` params of LiveChat object.
|
||||||
|
|
||||||
|
For example:
|
||||||
|
[constructor]
|
||||||
|
chat = LiveChat("video_id", processor = ( Processor1(), Processor2(), Processor3() )
|
||||||
|
|
||||||
|
[receive return values]
|
||||||
|
ret1, ret2, ret3 = chat.get()
|
||||||
|
|
||||||
|
The return values are tuple of processed chat data,
|
||||||
|
the order of return depends on parameter order.
|
||||||
|
|
||||||
|
Parameter
|
||||||
|
---------
|
||||||
|
processors : Tuple[ChatProcessor]
|
||||||
|
multiple processors for processing chat data
|
||||||
|
'''
|
||||||
|
|
||||||
|
def __init__(self, processors: tuple):
|
||||||
|
self.processors = processors
|
||||||
|
|
||||||
|
def process(self, chat_components: list):
|
||||||
|
'''
|
||||||
|
Called from LiveChat.get() function by user,
|
||||||
|
or LiveChat._listen() automatically.
|
||||||
|
|
||||||
|
Returns
|
||||||
|
-------
|
||||||
|
Tuple of chat data processed by each chat processor.
|
||||||
|
'''
|
||||||
|
return tuple([processor.process(chat_components)
|
||||||
|
for processor in self.processors])
|
||||||
|
|
||||||
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
|
|
||||||
from .renderer.textmessage import LiveChatTextMessageRenderer
|
|
||||||
from .renderer.paidmessage import LiveChatPaidMessageRenderer
|
|
||||||
from .renderer.paidsticker import LiveChatPaidStickerRenderer
|
|
||||||
from .renderer.legacypaid import LiveChatLegacyPaidMessageRenderer
|
|
||||||
|
|
||||||
def parse(sitem):
|
|
||||||
|
|
||||||
action = sitem.get("addChatItemAction")
|
|
||||||
if action:
|
|
||||||
item = action.get("item")
|
|
||||||
if item is None: return None
|
|
||||||
rd={}
|
|
||||||
try:
|
|
||||||
renderer = get_renderer(item)
|
|
||||||
if renderer == None:
|
|
||||||
return None
|
|
||||||
|
|
||||||
rd["kind"] = "youtube#liveChatMessage"
|
|
||||||
rd["etag"] = ""
|
|
||||||
rd["id"] = 'LCC.' + renderer.get_id()
|
|
||||||
rd["snippet"] = renderer.get_snippet()
|
|
||||||
rd["authorDetails"] = renderer.get_authordetails()
|
|
||||||
except (KeyError,TypeError,AttributeError) as e:
|
|
||||||
print(f"------{str(type(e))}-{str(e)}----------")
|
|
||||||
print(sitem)
|
|
||||||
return None
|
|
||||||
|
|
||||||
return rd
|
|
||||||
|
|
||||||
def get_renderer(item):
|
|
||||||
if item.get("liveChatTextMessageRenderer"):
|
|
||||||
renderer = LiveChatTextMessageRenderer(item)
|
|
||||||
elif item.get("liveChatPaidMessageRenderer"):
|
|
||||||
renderer = LiveChatPaidMessageRenderer(item)
|
|
||||||
elif item.get( "liveChatPaidStickerRenderer"):
|
|
||||||
renderer = LiveChatPaidStickerRenderer(item)
|
|
||||||
elif item.get("liveChatLegacyPaidMessageRenderer"):
|
|
||||||
renderer = LiveChatLegacyPaidMessageRenderer(item)
|
|
||||||
else:
|
|
||||||
renderer = None
|
|
||||||
return renderer
|
|
||||||
|
|
||||||
@@ -1,11 +1,15 @@
|
|||||||
from . import parser
|
|
||||||
import json
|
|
||||||
import os
|
|
||||||
import traceback
|
|
||||||
import datetime
|
import datetime
|
||||||
import time
|
import time
|
||||||
class CompatibleProcessor():
|
from .renderer.textmessage import LiveChatTextMessageRenderer
|
||||||
|
from .renderer.paidmessage import LiveChatPaidMessageRenderer
|
||||||
|
from .renderer.paidsticker import LiveChatPaidStickerRenderer
|
||||||
|
from .renderer.legacypaid import LiveChatLegacyPaidMessageRenderer
|
||||||
|
from .. chat_processor import ChatProcessor
|
||||||
|
from ... import config
|
||||||
|
logger = config.logger(__name__)
|
||||||
|
|
||||||
|
class CompatibleProcessor(ChatProcessor):
|
||||||
|
|
||||||
def process(self, chat_components: list):
|
def process(self, chat_components: list):
|
||||||
|
|
||||||
chatlist = []
|
chatlist = []
|
||||||
@@ -26,7 +30,7 @@ class CompatibleProcessor():
|
|||||||
if action.get('addChatItemAction') is None: continue
|
if action.get('addChatItemAction') is None: continue
|
||||||
if action['addChatItemAction'].get('item') is None: continue
|
if action['addChatItemAction'].get('item') is None: continue
|
||||||
|
|
||||||
chat = parser.parse(action)
|
chat = self.parse(action)
|
||||||
if chat:
|
if chat:
|
||||||
chatlist.append(chat)
|
chatlist.append(chat)
|
||||||
ret["pollingIntervalMillis"] = int(timeout*1000)
|
ret["pollingIntervalMillis"] = int(timeout*1000)
|
||||||
@@ -36,4 +40,42 @@ class CompatibleProcessor():
|
|||||||
}
|
}
|
||||||
ret["items"] = chatlist
|
ret["items"] = chatlist
|
||||||
|
|
||||||
return ret
|
return ret
|
||||||
|
|
||||||
|
def parse(self, sitem):
|
||||||
|
|
||||||
|
action = sitem.get("addChatItemAction")
|
||||||
|
if action:
|
||||||
|
item = action.get("item")
|
||||||
|
if item is None: return None
|
||||||
|
rd={}
|
||||||
|
try:
|
||||||
|
renderer = self.get_renderer(item)
|
||||||
|
if renderer == None:
|
||||||
|
return None
|
||||||
|
|
||||||
|
rd["kind"] = "youtube#liveChatMessage"
|
||||||
|
rd["etag"] = ""
|
||||||
|
rd["id"] = 'LCC.' + renderer.get_id()
|
||||||
|
rd["snippet"] = renderer.get_snippet()
|
||||||
|
rd["authorDetails"] = renderer.get_authordetails()
|
||||||
|
except (KeyError,TypeError,AttributeError) as e:
|
||||||
|
logger.error(f"Error: {str(type(e))}-{str(e)}")
|
||||||
|
logger.error(f"item: {sitem}")
|
||||||
|
return None
|
||||||
|
|
||||||
|
return rd
|
||||||
|
|
||||||
|
def get_renderer(self, item):
|
||||||
|
if item.get("liveChatTextMessageRenderer"):
|
||||||
|
renderer = LiveChatTextMessageRenderer(item)
|
||||||
|
elif item.get("liveChatPaidMessageRenderer"):
|
||||||
|
renderer = LiveChatPaidMessageRenderer(item)
|
||||||
|
elif item.get( "liveChatPaidStickerRenderer"):
|
||||||
|
renderer = LiveChatPaidStickerRenderer(item)
|
||||||
|
elif item.get("liveChatLegacyPaidMessageRenderer"):
|
||||||
|
renderer = LiveChatLegacyPaidMessageRenderer(item)
|
||||||
|
else:
|
||||||
|
renderer = None
|
||||||
|
return renderer
|
||||||
|
|
||||||
|
|||||||
@@ -1,39 +0,0 @@
|
|||||||
|
|
||||||
from .renderer.textmessage import LiveChatTextMessageRenderer
|
|
||||||
from .renderer.paidmessage import LiveChatPaidMessageRenderer
|
|
||||||
from .renderer.paidsticker import LiveChatPaidStickerRenderer
|
|
||||||
from .renderer.legacypaid import LiveChatLegacyPaidMessageRenderer
|
|
||||||
|
|
||||||
def parse(sitem):
|
|
||||||
|
|
||||||
action = sitem.get("addChatItemAction")
|
|
||||||
if action:
|
|
||||||
item = action.get("item")
|
|
||||||
if item is None: return None
|
|
||||||
try:
|
|
||||||
renderer = get_renderer(item)
|
|
||||||
if renderer == None:
|
|
||||||
return None
|
|
||||||
|
|
||||||
renderer.get_snippet()
|
|
||||||
renderer.get_authordetails()
|
|
||||||
except (KeyError,TypeError,AttributeError) as e:
|
|
||||||
print(f"------{str(type(e))}-{str(e)}----------")
|
|
||||||
print(sitem)
|
|
||||||
return None
|
|
||||||
|
|
||||||
return renderer
|
|
||||||
|
|
||||||
def get_renderer(item):
|
|
||||||
if item.get("liveChatTextMessageRenderer"):
|
|
||||||
renderer = LiveChatTextMessageRenderer(item)
|
|
||||||
elif item.get("liveChatPaidMessageRenderer"):
|
|
||||||
renderer = LiveChatPaidMessageRenderer(item)
|
|
||||||
elif item.get( "liveChatPaidStickerRenderer"):
|
|
||||||
renderer = LiveChatPaidStickerRenderer(item)
|
|
||||||
elif item.get("liveChatLegacyPaidMessageRenderer"):
|
|
||||||
renderer = LiveChatLegacyPaidMessageRenderer(item)
|
|
||||||
else:
|
|
||||||
renderer = None
|
|
||||||
return renderer
|
|
||||||
|
|
||||||
@@ -1,7 +1,12 @@
|
|||||||
from . import parser
|
|
||||||
import asyncio
|
import asyncio
|
||||||
import time
|
import time
|
||||||
|
from .renderer.textmessage import LiveChatTextMessageRenderer
|
||||||
|
from .renderer.paidmessage import LiveChatPaidMessageRenderer
|
||||||
|
from .renderer.paidsticker import LiveChatPaidStickerRenderer
|
||||||
|
from .renderer.legacypaid import LiveChatLegacyPaidMessageRenderer
|
||||||
|
from .. chat_processor import ChatProcessor
|
||||||
|
from ... import config
|
||||||
|
logger = config.logger(__name__)
|
||||||
|
|
||||||
class Chatdata:
|
class Chatdata:
|
||||||
def __init__(self,chatlist:list, timeout:float):
|
def __init__(self,chatlist:list, timeout:float):
|
||||||
@@ -10,17 +15,17 @@ class Chatdata:
|
|||||||
|
|
||||||
def tick(self):
|
def tick(self):
|
||||||
if self.interval == 0:
|
if self.interval == 0:
|
||||||
time.sleep(3)
|
time.sleep(1)
|
||||||
return
|
return
|
||||||
time.sleep(self.interval/len(self.items))
|
time.sleep(self.interval/len(self.items))
|
||||||
|
|
||||||
async def tick_async(self):
|
async def tick_async(self):
|
||||||
if self.interval == 0:
|
if self.interval == 0:
|
||||||
await asyncio.sleep(0.5)
|
await asyncio.sleep(1)
|
||||||
return
|
return
|
||||||
await asyncio.sleep(self.interval/len(self.items))
|
await asyncio.sleep(self.interval/len(self.items))
|
||||||
|
|
||||||
class DefaultProcessor:
|
class DefaultProcessor(ChatProcessor):
|
||||||
def process(self, chat_components: list):
|
def process(self, chat_components: list):
|
||||||
|
|
||||||
chatlist = []
|
chatlist = []
|
||||||
@@ -37,8 +42,39 @@ class DefaultProcessor:
|
|||||||
if action.get('addChatItemAction') is None: continue
|
if action.get('addChatItemAction') is None: continue
|
||||||
if action['addChatItemAction'].get('item') is None: continue
|
if action['addChatItemAction'].get('item') is None: continue
|
||||||
|
|
||||||
chat = parser.parse(action)
|
chat = self._parse(action)
|
||||||
if chat:
|
if chat:
|
||||||
chatlist.append(chat)
|
chatlist.append(chat)
|
||||||
return Chatdata(chatlist, float(timeout))
|
return Chatdata(chatlist, float(timeout))
|
||||||
|
|
||||||
|
|
||||||
|
def _parse(self, sitem):
|
||||||
|
|
||||||
|
action = sitem.get("addChatItemAction")
|
||||||
|
if action:
|
||||||
|
item = action.get("item")
|
||||||
|
if item is None: return None
|
||||||
|
try:
|
||||||
|
renderer = self._get_renderer(item)
|
||||||
|
if renderer == None:
|
||||||
|
return None
|
||||||
|
|
||||||
|
renderer.get_snippet()
|
||||||
|
renderer.get_authordetails()
|
||||||
|
except (KeyError,TypeError,AttributeError) as e:
|
||||||
|
logger.error(f"{str(type(e))}-{str(e)} sitem:{str(sitem)}")
|
||||||
|
return None
|
||||||
|
return renderer
|
||||||
|
|
||||||
|
def _get_renderer(self, item):
|
||||||
|
if item.get("liveChatTextMessageRenderer"):
|
||||||
|
renderer = LiveChatTextMessageRenderer(item)
|
||||||
|
elif item.get("liveChatPaidMessageRenderer"):
|
||||||
|
renderer = LiveChatPaidMessageRenderer(item)
|
||||||
|
elif item.get( "liveChatPaidStickerRenderer"):
|
||||||
|
renderer = LiveChatPaidStickerRenderer(item)
|
||||||
|
elif item.get("liveChatLegacyPaidMessageRenderer"):
|
||||||
|
renderer = LiveChatLegacyPaidMessageRenderer(item)
|
||||||
|
else:
|
||||||
|
renderer = None
|
||||||
|
return renderer
|
||||||
@@ -13,8 +13,13 @@ class BaseRenderer:
|
|||||||
self.id = self.renderer.get('id')
|
self.id = self.renderer.get('id')
|
||||||
timestampUsec = int(self.renderer.get("timestampUsec",0))
|
timestampUsec = int(self.renderer.get("timestampUsec",0))
|
||||||
self.timestamp = int(timestampUsec/1000)
|
self.timestamp = int(timestampUsec/1000)
|
||||||
|
tst = self.renderer.get("timestampText")
|
||||||
|
if tst:
|
||||||
|
self.elapsedTime = tst.get("simpleText")
|
||||||
|
else:
|
||||||
|
self.elapsedTime = ""
|
||||||
self.datetime = self.get_datetime(timestampUsec)
|
self.datetime = self.get_datetime(timestampUsec)
|
||||||
self.message = self.get_message(self.renderer)
|
self.message ,self.messageEx = self.get_message(self.renderer)
|
||||||
self.id = self.renderer.get('id')
|
self.id = self.renderer.get('id')
|
||||||
self.amountValue= 0.0
|
self.amountValue= 0.0
|
||||||
self.amountString = ""
|
self.amountString = ""
|
||||||
@@ -38,6 +43,7 @@ class BaseRenderer:
|
|||||||
|
|
||||||
def get_message(self,renderer):
|
def get_message(self,renderer):
|
||||||
message = ''
|
message = ''
|
||||||
|
message_ex = []
|
||||||
if renderer.get("message"):
|
if renderer.get("message"):
|
||||||
runs=renderer["message"].get("runs")
|
runs=renderer["message"].get("runs")
|
||||||
if runs:
|
if runs:
|
||||||
@@ -45,9 +51,13 @@ class BaseRenderer:
|
|||||||
if r:
|
if r:
|
||||||
if r.get('emoji'):
|
if r.get('emoji'):
|
||||||
message += r['emoji'].get('shortcuts',[''])[0]
|
message += r['emoji'].get('shortcuts',[''])[0]
|
||||||
|
message_ex.append(r['emoji']['image']['thumbnails'][1].get('url'))
|
||||||
else:
|
else:
|
||||||
message += r.get('text','')
|
message += r.get('text','')
|
||||||
return message
|
message_ex.append(r.get('text',''))
|
||||||
|
return message, message_ex
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def get_badges(self,renderer):
|
def get_badges(self,renderer):
|
||||||
isVerified = False
|
isVerified = False
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ symbols = {
|
|||||||
"PLN\xa0": {"fxtext": "PLN", "jptext": "ポーランド・ズロチ"},
|
"PLN\xa0": {"fxtext": "PLN", "jptext": "ポーランド・ズロチ"},
|
||||||
"R$": {"fxtext": "BRL", "jptext": "ブラジル・レアル"},
|
"R$": {"fxtext": "BRL", "jptext": "ブラジル・レアル"},
|
||||||
"RUB\xa0": {"fxtext": "RUB", "jptext": "ロシア・ルーブル"},
|
"RUB\xa0": {"fxtext": "RUB", "jptext": "ロシア・ルーブル"},
|
||||||
"SEK\xa0": {"fxtext": "SEK", "jptext": "スウェーデン・クローネ"},
|
"SEK\xa0": {"fxtext": "SEK", "jptext": "スウェーデン・クローナ"},
|
||||||
"£": {"fxtext": "GBP", "jptext": "英・ポンド"},
|
"£": {"fxtext": "GBP", "jptext": "英・ポンド"},
|
||||||
"₩": {"fxtext": "KRW", "jptext": "韓国・ウォン"},
|
"₩": {"fxtext": "KRW", "jptext": "韓国・ウォン"},
|
||||||
"€": {"fxtext": "EUR", "jptext": "欧・ユーロ"},
|
"€": {"fxtext": "EUR", "jptext": "欧・ユーロ"},
|
||||||
|
|||||||
@@ -1,12 +1,42 @@
|
|||||||
import re
|
import re
|
||||||
from . import currency
|
from . import currency
|
||||||
from .paidmessage import LiveChatPaidMessageRenderer
|
from .base import BaseRenderer
|
||||||
|
superchat_regex = re.compile(r"^(\D*)(\d{1,3}(,\d{3})*(\.\d*)*\b)$")
|
||||||
|
|
||||||
class LiveChatPaidStickerRenderer(LiveChatPaidMessageRenderer):
|
class LiveChatPaidStickerRenderer(BaseRenderer):
|
||||||
def __init__(self, item):
|
def __init__(self, item):
|
||||||
super().__init__(item, "superSticker")
|
super().__init__(item, "superSticker")
|
||||||
|
|
||||||
|
|
||||||
|
def get_snippet(self):
|
||||||
|
super().get_snippet()
|
||||||
|
|
||||||
|
self.author.name = self.renderer["authorName"]["simpleText"]
|
||||||
|
|
||||||
|
amountDisplayString, symbol, amount =(
|
||||||
|
self.get_amountdata(self.renderer)
|
||||||
|
)
|
||||||
|
self.message = ""
|
||||||
|
self.amountValue = amount
|
||||||
|
self.amountString = amountDisplayString
|
||||||
|
self.currency = currency.symbols[symbol]["fxtext"] if currency.symbols.get(symbol) else symbol
|
||||||
|
self.bgColor = self.renderer.get("moneyChipBackgroundColor", 0)
|
||||||
|
self.sticker = "https:"+self.renderer["sticker"]["thumbnails"][0]["url"]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def get_amountdata(self,renderer):
|
||||||
|
amountDisplayString = renderer["purchaseAmountText"]["simpleText"]
|
||||||
|
m = superchat_regex.search(amountDisplayString)
|
||||||
|
if m:
|
||||||
|
symbol = m.group(1)
|
||||||
|
amount = float(m.group(2).replace(',',''))
|
||||||
|
else:
|
||||||
|
symbol = ""
|
||||||
|
amount = 0.0
|
||||||
|
return amountDisplayString, symbol, amount
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
8
pytchat/processors/dummy_processor.py
Normal file
8
pytchat/processors/dummy_processor.py
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
from .chat_processor import ChatProcessor
|
||||||
|
|
||||||
|
class DummyProcessor(ChatProcessor):
|
||||||
|
'''
|
||||||
|
Dummy processor just returns received chat_components directly.
|
||||||
|
'''
|
||||||
|
def process(self, chat_components: list):
|
||||||
|
return chat_components
|
||||||
@@ -31,7 +31,7 @@ class SimpleDisplayProcessor(ChatProcessor):
|
|||||||
purchase_amount_text = ''
|
purchase_amount_text = ''
|
||||||
else:
|
else:
|
||||||
root = ( action['addChatItemAction']['item'].get('liveChatPaidMessageRenderer') or
|
root = ( action['addChatItemAction']['item'].get('liveChatPaidMessageRenderer') or
|
||||||
action['addChatItemAction']['item'].get('liveChatPaidMessageRenderer') )
|
action['addChatItemAction']['item'].get('liveChatPaidStickerRenderer') )
|
||||||
if root:
|
if root:
|
||||||
author_name = root['authorName']['simpleText']
|
author_name = root['authorName']['simpleText']
|
||||||
message = self._parse_message(root.get('message'))
|
message = self._parse_message(root.get('message'))
|
||||||
|
|||||||
204
pytchat/processors/speed_calculator.py
Normal file
204
pytchat/processors/speed_calculator.py
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
"""
|
||||||
|
speedmeter.py
|
||||||
|
チャットの勢いを算出するChatProcessor
|
||||||
|
Calculate speed of chat.
|
||||||
|
"""
|
||||||
|
import calendar, datetime, pytz
|
||||||
|
from .chat_processor import ChatProcessor
|
||||||
|
class RingQueue:
|
||||||
|
"""
|
||||||
|
リング型キュー
|
||||||
|
|
||||||
|
Attributes
|
||||||
|
----------
|
||||||
|
items : list
|
||||||
|
格納されているアイテムのリスト。
|
||||||
|
first_pos : int
|
||||||
|
キュー内の一番古いアイテムを示すリストのインデックス。
|
||||||
|
last_pos : int
|
||||||
|
キュー内の一番新しいアイテムを示すリストのインデックス。
|
||||||
|
mergin : boolean
|
||||||
|
キュー内に余裕があるか。キュー内のアイテム個数が、キューの最大個数未満であればTrue。
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, capacity):
|
||||||
|
"""
|
||||||
|
コンストラクタ
|
||||||
|
|
||||||
|
Parameter
|
||||||
|
----------
|
||||||
|
capacity:このキューに格納するアイテムの最大個数。
|
||||||
|
格納時に最大個数を超える場合は一番古いアイテムから
|
||||||
|
上書きする。
|
||||||
|
"""
|
||||||
|
if capacity <= 0:
|
||||||
|
raise ValueError
|
||||||
|
self.items = list()
|
||||||
|
self.capacity = capacity
|
||||||
|
self.first_pos = 0
|
||||||
|
self.last_pos = 0
|
||||||
|
self.mergin = True
|
||||||
|
|
||||||
|
def put(self, item):
|
||||||
|
"""
|
||||||
|
引数itemに指定されたアイテムをこのキューに格納する。
|
||||||
|
キューの最大個数を超える場合は、一番古いアイテムの位置に上書きする。
|
||||||
|
|
||||||
|
Parameter
|
||||||
|
----------
|
||||||
|
item:格納するアイテム
|
||||||
|
"""
|
||||||
|
if self.mergin:
|
||||||
|
self.items.append(item)
|
||||||
|
self.last_pos = len(self.items)-1
|
||||||
|
if self.last_pos == self.capacity-1:
|
||||||
|
self.mergin = False
|
||||||
|
return
|
||||||
|
self.last_pos += 1
|
||||||
|
if self.last_pos > self.capacity-1:
|
||||||
|
self.last_pos = 0
|
||||||
|
self.items[self.last_pos] = item
|
||||||
|
|
||||||
|
self.first_pos += 1
|
||||||
|
if self.first_pos > self.capacity-1:
|
||||||
|
self.first_pos = 0
|
||||||
|
|
||||||
|
def get(self):
|
||||||
|
"""
|
||||||
|
キュー内の一番古いアイテムへの参照を返す
|
||||||
|
(アイテムは削除しない)
|
||||||
|
|
||||||
|
Return
|
||||||
|
----------
|
||||||
|
キュー内の一番古いアイテムへの参照
|
||||||
|
"""
|
||||||
|
return self.items[self.first_pos]
|
||||||
|
|
||||||
|
def item_count(self):
|
||||||
|
return len(self.items)
|
||||||
|
|
||||||
|
class SpeedCalculator(ChatProcessor, RingQueue):
|
||||||
|
"""
|
||||||
|
チャットの勢いを計算する。
|
||||||
|
|
||||||
|
一定期間のチャットデータのうち、最初のチャットの投稿時刻と
|
||||||
|
最後のチャットの投稿時刻の差を、チャット数で割り返し
|
||||||
|
1分あたりの速度に換算する。
|
||||||
|
|
||||||
|
Parameter
|
||||||
|
----------
|
||||||
|
capacity : int
|
||||||
|
RingQueueに格納するチャット勢い算出用データの最大数
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, capacity = 10):
|
||||||
|
super().__init__(capacity)
|
||||||
|
self.speed = 0
|
||||||
|
|
||||||
|
def process(self, chat_components: list):
|
||||||
|
chatdata = []
|
||||||
|
if chat_components:
|
||||||
|
for component in chat_components:
|
||||||
|
if component.get("chatdata"):
|
||||||
|
chatdata.extend(component.get("chatdata"))
|
||||||
|
|
||||||
|
self._put_chatdata(chatdata)
|
||||||
|
self.speed = self._calc_speed()
|
||||||
|
return self.speed
|
||||||
|
|
||||||
|
|
||||||
|
def _calc_speed(self):
|
||||||
|
"""
|
||||||
|
RingQueue内のチャット勢い算出用データリストを元に、
|
||||||
|
チャット速度を計算して返す
|
||||||
|
|
||||||
|
Return
|
||||||
|
---------------------------
|
||||||
|
チャット速度(1分間で換算したチャット数)
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
#キュー内の総チャット数
|
||||||
|
total = sum(item['chat_count'] for item in self.items)
|
||||||
|
#キュー内の最初と最後のチャットの時間差
|
||||||
|
duration = (self.items[self.last_pos]['endtime']
|
||||||
|
- self.items[self.first_pos]['starttime'])
|
||||||
|
if duration != 0:
|
||||||
|
return int(total*60/duration)
|
||||||
|
return 0
|
||||||
|
except IndexError:
|
||||||
|
return 0
|
||||||
|
|
||||||
|
def _put_chatdata(self, actions):
|
||||||
|
"""
|
||||||
|
チャットデータからタイムスタンプを読み取り、勢い測定用のデータを組み立て、
|
||||||
|
RingQueueに投入する。
|
||||||
|
200円以上のスパチャはtickerとmessageの2つのデータが生成されるが、
|
||||||
|
tickerの方は時刻データの場所が異なることを利用し、勢いの集計から除外している。
|
||||||
|
Parameter
|
||||||
|
---------
|
||||||
|
actions : List[dict]
|
||||||
|
チャットデータ(addChatItemAction) のリスト
|
||||||
|
"""
|
||||||
|
def _put_emptydata():
|
||||||
|
'''
|
||||||
|
チャットデータがない場合に空のデータをキューに投入する。
|
||||||
|
'''
|
||||||
|
timestamp_now = calendar.timegm(datetime.datetime.
|
||||||
|
now(pytz.utc).utctimetuple())
|
||||||
|
self.put({
|
||||||
|
'chat_count':0,
|
||||||
|
'starttime':int(timestamp_now),
|
||||||
|
'endtime':int(timestamp_now)
|
||||||
|
})
|
||||||
|
|
||||||
|
def _get_timestamp(action :dict):
|
||||||
|
"""
|
||||||
|
チャットデータから時刻データを取り出す。
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
item = action['addChatItemAction']['item']
|
||||||
|
timestamp = int(item[list(item.keys())[0]]['timestampUsec'])
|
||||||
|
except (KeyError,TypeError):
|
||||||
|
return None
|
||||||
|
return timestamp
|
||||||
|
|
||||||
|
if actions is None or len(actions)==0:
|
||||||
|
_put_emptydata()
|
||||||
|
return
|
||||||
|
|
||||||
|
#actions内の時刻データを持つチャットデータの数
|
||||||
|
counter=0
|
||||||
|
#actions内の最初のチャットデータの時刻
|
||||||
|
starttime= None
|
||||||
|
#actions内の最後のチャットデータの時刻
|
||||||
|
endtime=None
|
||||||
|
|
||||||
|
for action in actions:
|
||||||
|
#チャットデータからtimestampUsecを読み取る
|
||||||
|
gettime = _get_timestamp(action)
|
||||||
|
|
||||||
|
#時刻のないデータだった場合は次の行のデータで読み取り試行
|
||||||
|
if gettime is None:
|
||||||
|
continue
|
||||||
|
|
||||||
|
#最初に有効な時刻を持つデータのtimestampをstarttimeに設定
|
||||||
|
if starttime is None:
|
||||||
|
starttime = gettime
|
||||||
|
|
||||||
|
#最後のtimestampを設定(途中で時刻のないデータの場合もあるので上書きしていく)
|
||||||
|
endtime = gettime
|
||||||
|
|
||||||
|
#チャットの数をインクリメント
|
||||||
|
counter += 1
|
||||||
|
|
||||||
|
#チャット速度用のデータをRingQueueに送る
|
||||||
|
if starttime is None or endtime is None:
|
||||||
|
_put_emptydata()
|
||||||
|
return
|
||||||
|
|
||||||
|
self.put({
|
||||||
|
'chat_count':counter,
|
||||||
|
'starttime':int(starttime/1000000),
|
||||||
|
'endtime':int(endtime/1000000)
|
||||||
|
})
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import requests,json,datetime
|
import requests,json,datetime
|
||||||
from .. import config
|
from .. import config
|
||||||
|
|
||||||
def download(cls,url):
|
def download(url):
|
||||||
_session = requests.Session()
|
_session = requests.Session()
|
||||||
html = _session.get(url, headers=config.headers)
|
html = _session.get(url, headers=config.headers)
|
||||||
with open(str(datetime.datetime.now().strftime('%Y-%m-%d %H-%M-%S')
|
with open(str(datetime.datetime.now().strftime('%Y-%m-%d %H-%M-%S')
|
||||||
@@ -9,7 +9,7 @@ def download(cls,url):
|
|||||||
json.dump(html.json(),f,ensure_ascii=False)
|
json.dump(html.json(),f,ensure_ascii=False)
|
||||||
|
|
||||||
|
|
||||||
def save(cls,data,filename):
|
def save(data,filename,extention):
|
||||||
with open(str(datetime.datetime.now().strftime('%Y-%m-%d %H-%M-%S')
|
with open(filename+"_"+(datetime.datetime.now().strftime('%Y-%m-%d %H-%M-%S')
|
||||||
)+filename,mode ='w',encoding='utf-8') as f:
|
)+extention,mode ='w',encoding='utf-8') as f:
|
||||||
f.writelines(data)
|
f.writelines(data)
|
||||||
|
|||||||
28
setup.py
28
setup.py
@@ -1,6 +1,6 @@
|
|||||||
from setuptools import setup, find_packages, Command
|
from setuptools import setup, find_packages, Command
|
||||||
from codecs import open
|
#from codecs import open as open_c
|
||||||
from os import path, system
|
from os import path, system, remove, rename
|
||||||
import re
|
import re
|
||||||
|
|
||||||
package_name = "pytchat"
|
package_name = "pytchat"
|
||||||
@@ -28,19 +28,19 @@ assert author
|
|||||||
assert author_email
|
assert author_email
|
||||||
assert url
|
assert url
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
with open('README.MD', 'r', encoding='utf-8') as f:
|
||||||
|
txt = f.read()
|
||||||
|
|
||||||
|
with open('README1.MD', 'w', encoding='utf-8', newline='\n') as f:
|
||||||
|
f.write(txt)
|
||||||
|
|
||||||
|
remove("README.MD")
|
||||||
|
rename("README1.MD","README.MD")
|
||||||
with open('README.md', encoding='utf-8') as f:
|
with open('README.md', encoding='utf-8') as f:
|
||||||
long_description = f.read()
|
long_description = f.read()
|
||||||
|
|
||||||
class CleanCommand(Command):
|
|
||||||
"""Custom clean command to tidy up the project root."""
|
|
||||||
user_options = []
|
|
||||||
def initialize_options(self):
|
|
||||||
pass
|
|
||||||
def finalize_options(self):
|
|
||||||
pass
|
|
||||||
def run(self):
|
|
||||||
#system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info')
|
|
||||||
system('rmdir /Q /S pytchat.egg-info, dist')
|
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
@@ -68,7 +68,5 @@ setup(
|
|||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
],
|
],
|
||||||
keywords='youtube livechat asyncio',
|
keywords='youtube livechat asyncio',
|
||||||
cmdclass={
|
|
||||||
'clean': CleanCommand,
|
|
||||||
}
|
|
||||||
)
|
)
|
||||||
26
tests/test_arcparam.py
Normal file
26
tests/test_arcparam.py
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
import pytest
|
||||||
|
from pytchat.parser.replay import Parser
|
||||||
|
import pytchat.config as config
|
||||||
|
import requests, json
|
||||||
|
from pytchat.paramgen import arcparam
|
||||||
|
|
||||||
|
def test_arcparam_0(mocker):
|
||||||
|
param = arcparam.get("01234567890")
|
||||||
|
assert "op2w0wRyGjxDZzhhRFFvTE1ERXlNelExTmpjNE9UQWFFLXFvM2JrQkRRb0xNREV5TXpRMU5qYzRPVEFnQVElM0QlM0QoATAAOABAAEgEUhwIABAAGAAgACoOc3RhdGljY2hlY2tzdW1AAFgDYAFoAXIECAEQAXgA" == param
|
||||||
|
|
||||||
|
|
||||||
|
def test_arcparam_1(mocker):
|
||||||
|
param = arcparam.get("01234567890", seektime = 100000)
|
||||||
|
assert "op2w0wR3GjxDZzhhRFFvTE1ERXlNelExTmpjNE9UQWFFLXFvM2JrQkRRb0xNREV5TXpRMU5qYzRPVEFnQVElM0QlM0QogNDbw_QCMAA4AEAASANSHAgAEAAYACAAKg5zdGF0aWNjaGVja3N1bUAAWANgAWgBcgQIARABeAA%3D" == param
|
||||||
|
|
||||||
|
def test_arcparam_2(mocker):
|
||||||
|
param = arcparam.get("SsjCnHOk-Sk")
|
||||||
|
url=f"https://www.youtube.com/live_chat_replay/get_live_chat_replay?continuation={param}&pbj=1"
|
||||||
|
resp = requests.Session().get(url,headers = config.headers)
|
||||||
|
jsn = json.loads(resp.text)
|
||||||
|
parser = Parser()
|
||||||
|
_ , chatdata = parser.parse(jsn)
|
||||||
|
test_id = chatdata[0]["addChatItemAction"]["item"]["liveChatTextMessageRenderer"]["id"]
|
||||||
|
print(test_id)
|
||||||
|
assert "CjoKGkNMYXBzZTdudHVVQ0Zjc0IxZ0FkTnFnQjVREhxDSnlBNHV2bnR1VUNGV0dnd2dvZDd3NE5aZy0w" == test_id
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import json
|
import json
|
||||||
import pytest
|
import pytest
|
||||||
import asyncio,aiohttp
|
import asyncio,aiohttp
|
||||||
from pytchat.core_async.parser import Parser
|
from pytchat.parser.live import Parser
|
||||||
from pytchat.processors.compatible.processor import CompatibleProcessor
|
from pytchat.processors.compatible.processor import CompatibleProcessor
|
||||||
from pytchat.exceptions import (
|
from pytchat.exceptions import (
|
||||||
NoLivechatRendererException,NoYtinitialdataException,
|
NoLivechatRendererException,NoYtinitialdataException,
|
||||||
@@ -12,13 +12,15 @@ from pytchat.processors.compatible.renderer.paidmessage import LiveChatPaidMessa
|
|||||||
from pytchat.processors.compatible.renderer.paidsticker import LiveChatPaidStickerRenderer
|
from pytchat.processors.compatible.renderer.paidsticker import LiveChatPaidStickerRenderer
|
||||||
from pytchat.processors.compatible.renderer.legacypaid import LiveChatLegacyPaidMessageRenderer
|
from pytchat.processors.compatible.renderer.legacypaid import LiveChatLegacyPaidMessageRenderer
|
||||||
|
|
||||||
|
parser = Parser()
|
||||||
|
|
||||||
def test_textmessage(mocker):
|
def test_textmessage(mocker):
|
||||||
'''api互換processorのテスト:通常テキストメッセージ'''
|
'''api互換processorのテスト:通常テキストメッセージ'''
|
||||||
processor = CompatibleProcessor()
|
processor = CompatibleProcessor()
|
||||||
|
|
||||||
_json = _open_file("tests/testdata/compatible/textmessage.json")
|
_json = _open_file("tests/testdata/compatible/textmessage.json")
|
||||||
|
|
||||||
_, chatdata = Parser.parse(json.loads(_json))
|
_, chatdata = parser.parse(json.loads(_json))
|
||||||
data = {
|
data = {
|
||||||
"video_id" : "",
|
"video_id" : "",
|
||||||
"timeout" : 7,
|
"timeout" : 7,
|
||||||
@@ -55,7 +57,7 @@ def test_newsponcer(mocker):
|
|||||||
|
|
||||||
_json = _open_file("tests/testdata/compatible/newSponsor.json")
|
_json = _open_file("tests/testdata/compatible/newSponsor.json")
|
||||||
|
|
||||||
_, chatdata = Parser.parse(json.loads(_json))
|
_, chatdata = parser.parse(json.loads(_json))
|
||||||
data = {
|
data = {
|
||||||
"video_id" : "",
|
"video_id" : "",
|
||||||
"timeout" : 7,
|
"timeout" : 7,
|
||||||
@@ -91,7 +93,7 @@ def test_superchat(mocker):
|
|||||||
|
|
||||||
_json = _open_file("tests/testdata/compatible/superchat.json")
|
_json = _open_file("tests/testdata/compatible/superchat.json")
|
||||||
|
|
||||||
_, chatdata = Parser.parse(json.loads(_json))
|
_, chatdata = parser.parse(json.loads(_json))
|
||||||
data = {
|
data = {
|
||||||
"video_id" : "",
|
"video_id" : "",
|
||||||
"timeout" : 7,
|
"timeout" : 7,
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import pytest
|
import pytest
|
||||||
from pytchat.core_async.parser import Parser as AsyncParser
|
from pytchat.parser.live import Parser
|
||||||
from pytchat.core_multithread.parser import Parser as ThreadParser
|
|
||||||
import json
|
import json
|
||||||
import asyncio,aiohttp
|
import asyncio,aiohttp
|
||||||
|
|
||||||
|
|||||||
9
tests/test_liveparam.py
Normal file
9
tests/test_liveparam.py
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import pytest
|
||||||
|
from pytchat.paramgen import liveparam
|
||||||
|
|
||||||
|
def test_liveparam_0(mocker):
|
||||||
|
_ts1= 1546268400
|
||||||
|
param = liveparam._build("01234567890",
|
||||||
|
*([_ts1*1000000 for i in range(5)]))
|
||||||
|
test_param="0ofMyAPiARp8Q2c4S0RRb0xNREV5TXpRMU5qYzRPVEFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5TURFeU16UTFOamM0T1RBbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiAuNbVqsrfAjAAOABAAkorCAEQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgLjW1arK3wJYA1CAuNbVqsrfAliAuNbVqsrfAmgBggEECAEQAIgBAKABgLjW1arK3wI%3D"
|
||||||
|
assert test_param == param
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import pytest
|
import pytest
|
||||||
from pytchat.core_async.parser import Parser
|
from pytchat.parser.live import Parser
|
||||||
import json
|
import json
|
||||||
import asyncio,aiohttp
|
import asyncio,aiohttp
|
||||||
from aioresponses import aioresponses
|
from aioresponses import aioresponses
|
||||||
@@ -11,7 +11,7 @@ from pytchat.exceptions import (
|
|||||||
def _open_file(path):
|
def _open_file(path):
|
||||||
with open(path,mode ='r',encoding = 'utf-8') as f:
|
with open(path,mode ='r',encoding = 'utf-8') as f:
|
||||||
return f.read()
|
return f.read()
|
||||||
|
parser = Parser()
|
||||||
|
|
||||||
@aioresponses()
|
@aioresponses()
|
||||||
def test_finishedlive(*mock):
|
def test_finishedlive(*mock):
|
||||||
@@ -21,7 +21,7 @@ def test_finishedlive(*mock):
|
|||||||
_text = json.loads(_text)
|
_text = json.loads(_text)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
Parser.parse(_text)
|
parser.parse(_text)
|
||||||
assert False
|
assert False
|
||||||
except NoContentsException:
|
except NoContentsException:
|
||||||
assert True
|
assert True
|
||||||
@@ -34,7 +34,7 @@ def test_parsejson(*mock):
|
|||||||
_text = json.loads(_text)
|
_text = json.loads(_text)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
Parser.parse(_text)
|
parser.parse(_text)
|
||||||
jsn = _text
|
jsn = _text
|
||||||
timeout = jsn["response"]["continuationContents"]["liveChatContinuation"]["continuations"][0]["timedContinuationData"]["timeoutMs"]
|
timeout = jsn["response"]["continuationContents"]["liveChatContinuation"]["continuations"][0]["timedContinuationData"]["timeoutMs"]
|
||||||
continuation = jsn["response"]["continuationContents"]["liveChatContinuation"]["continuations"][0]["timedContinuationData"]["continuation"]
|
continuation = jsn["response"]["continuationContents"]["liveChatContinuation"]["continuations"][0]["timedContinuationData"]["continuation"]
|
||||||
|
|||||||
68
tests/test_speed_calculator.py
Normal file
68
tests/test_speed_calculator.py
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
import json
|
||||||
|
import pytest
|
||||||
|
import asyncio,aiohttp
|
||||||
|
from pytchat.parser.live import Parser
|
||||||
|
from pytchat.processors.compatible.processor import CompatibleProcessor
|
||||||
|
from pytchat.exceptions import (
|
||||||
|
NoLivechatRendererException,NoYtinitialdataException,
|
||||||
|
ResponseContextError, NoContentsException)
|
||||||
|
|
||||||
|
from pytchat.processors.speed_calculator import SpeedCalculator
|
||||||
|
|
||||||
|
parser = Parser()
|
||||||
|
|
||||||
|
def test_speed_1(mocker):
|
||||||
|
'''test speed calculation with normal json.
|
||||||
|
test json has 15 chatdata, duration is 30 seconds,
|
||||||
|
so the speed of chatdata is 30 chats/minute.
|
||||||
|
'''
|
||||||
|
|
||||||
|
processor = SpeedCalculator(capacity=30)
|
||||||
|
|
||||||
|
_json = _open_file("tests/testdata/speed/speedtest_normal.json")
|
||||||
|
|
||||||
|
_, chatdata = parser.parse(json.loads(_json))
|
||||||
|
data = {
|
||||||
|
"video_id" : "",
|
||||||
|
"timeout" : 10,
|
||||||
|
"chatdata" : chatdata
|
||||||
|
}
|
||||||
|
ret = processor.process([data])
|
||||||
|
assert 30 == ret
|
||||||
|
|
||||||
|
def test_speed_2(mocker):
|
||||||
|
'''test speed calculation with no valid chat data.
|
||||||
|
'''
|
||||||
|
processor = SpeedCalculator(capacity=30)
|
||||||
|
|
||||||
|
_json = _open_file("tests/testdata/speed/speedtest_undefined.json")
|
||||||
|
|
||||||
|
_, chatdata = parser.parse(json.loads(_json))
|
||||||
|
data = {
|
||||||
|
"video_id" : "",
|
||||||
|
"timeout" : 10,
|
||||||
|
"chatdata" : chatdata
|
||||||
|
}
|
||||||
|
ret = processor.process([data])
|
||||||
|
assert 0 == ret
|
||||||
|
|
||||||
|
def test_speed_3(mocker):
|
||||||
|
'''test speed calculation with empty data.
|
||||||
|
'''
|
||||||
|
processor = SpeedCalculator(capacity=30)
|
||||||
|
|
||||||
|
_json = _open_file("tests/testdata/speed/speedtest_empty.json")
|
||||||
|
|
||||||
|
_, chatdata = parser.parse(json.loads(_json))
|
||||||
|
data = {
|
||||||
|
"video_id" : "",
|
||||||
|
"timeout" : 10,
|
||||||
|
"chatdata" : chatdata
|
||||||
|
}
|
||||||
|
ret = processor.process([data])
|
||||||
|
assert 0 == ret
|
||||||
|
|
||||||
|
|
||||||
|
def _open_file(path):
|
||||||
|
with open(path,mode ='r',encoding = 'utf-8') as f:
|
||||||
|
return f.read()
|
||||||
164
tests/testdata/chat.json
vendored
Normal file
164
tests/testdata/chat.json
vendored
Normal file
@@ -0,0 +1,164 @@
|
|||||||
|
{
|
||||||
|
"timing": {
|
||||||
|
"info": {
|
||||||
|
"st": 164
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"csn": "",
|
||||||
|
"response": {
|
||||||
|
"responseContext": {
|
||||||
|
"serviceTrackingParams": [{
|
||||||
|
"service": "CSI",
|
||||||
|
"params": [{
|
||||||
|
"key": "GetLiveChat_rid",
|
||||||
|
"value": ""
|
||||||
|
}, {
|
||||||
|
"key": "c",
|
||||||
|
"value": "WEB"
|
||||||
|
}, {
|
||||||
|
"key": "cver",
|
||||||
|
"value": "2.20191219.03.01"
|
||||||
|
}, {
|
||||||
|
"key": "yt_li",
|
||||||
|
"value": "0"
|
||||||
|
}]
|
||||||
|
}, {
|
||||||
|
"service": "GFEEDBACK",
|
||||||
|
"params": [{
|
||||||
|
"key": "e",
|
||||||
|
"value": ""
|
||||||
|
}, {
|
||||||
|
"key": "logged_in",
|
||||||
|
"value": "0"
|
||||||
|
}]
|
||||||
|
}, {
|
||||||
|
"service": "GUIDED_HELP",
|
||||||
|
"params": [{
|
||||||
|
"key": "logged_in",
|
||||||
|
"value": "0"
|
||||||
|
}]
|
||||||
|
}, {
|
||||||
|
"service": "ECATCHER",
|
||||||
|
"params": [{
|
||||||
|
"key": "client.name",
|
||||||
|
"value": "WEB"
|
||||||
|
}, {
|
||||||
|
"key": "client.version",
|
||||||
|
"value": "2.2"
|
||||||
|
}, {
|
||||||
|
"key": "innertube.build.changelist",
|
||||||
|
"value": "228"
|
||||||
|
}, {
|
||||||
|
"key": "innertube.build.experiments.source_version",
|
||||||
|
"value": "2858"
|
||||||
|
}, {
|
||||||
|
"key": "innertube.build.label",
|
||||||
|
"value": "youtube.ytfe.innertube_"
|
||||||
|
}, {
|
||||||
|
"key": "innertube.build.timestamp",
|
||||||
|
"value": "154"
|
||||||
|
}, {
|
||||||
|
"key": "innertube.build.variants.checksum",
|
||||||
|
"value": "e"
|
||||||
|
}, {
|
||||||
|
"key": "innertube.run.job",
|
||||||
|
"value": "ytfe-innertube-replica-only.ytfe"
|
||||||
|
}]
|
||||||
|
}],
|
||||||
|
"webResponseContextExtensionData": {
|
||||||
|
"ytConfigData": {
|
||||||
|
"csn": "ADw",
|
||||||
|
"visitorData": "%3D%3D"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"continuationContents": {
|
||||||
|
"liveChatContinuation": {
|
||||||
|
"continuations": [{
|
||||||
|
"timedContinuationData": {
|
||||||
|
"timeoutMs": 10000,
|
||||||
|
"continuation": "continuation"
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
"actions": [{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
"message": {
|
||||||
|
"runs": [{
|
||||||
|
"text": "message"
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
"authorName": {
|
||||||
|
"simpleText": "authorName"
|
||||||
|
},
|
||||||
|
"authorPhoto": {
|
||||||
|
"thumbnails": [{
|
||||||
|
"url": "https://yt3.ggpht.com/photo.jpg",
|
||||||
|
"width": 32,
|
||||||
|
"height": 32
|
||||||
|
}, {
|
||||||
|
"url": "https://yt3.ggpht.com/photo.jpg",
|
||||||
|
"width": 64,
|
||||||
|
"height": 64
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
"contextMenuEndpoint": {
|
||||||
|
"commandMetadata": {
|
||||||
|
"webCommandMetadata": {
|
||||||
|
"ignoreNavigation": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"liveChatItemContextMenuEndpoint": {
|
||||||
|
"params": "params"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"id": "id",
|
||||||
|
"timestampUsec": "1576851922945411",
|
||||||
|
"authorBadges": [{
|
||||||
|
"liveChatAuthorBadgeRenderer": {
|
||||||
|
"customThumbnail": {
|
||||||
|
"thumbnails": [{
|
||||||
|
"url": "https://yt3.ggpht.com/photo.jpg"
|
||||||
|
}, {
|
||||||
|
"url": "https://yt3.ggpht.com/photo.jpg"
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
"tooltip": "メンバー(6 か月)",
|
||||||
|
"accessibility": {
|
||||||
|
"accessibilityData": {
|
||||||
|
"label": "メンバー(6 か月)"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
"authorExternalChannelId": "UC",
|
||||||
|
"contextMenuAccessibility": {
|
||||||
|
"accessibilityData": {
|
||||||
|
"label": "コメントの操作"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"clientId": "00000000000000000000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
},
|
||||||
|
|
||||||
|
"xsrf_token": "xsrf_token",
|
||||||
|
"url": "/live_chat/get_live_chat?continuation=0",
|
||||||
|
"endpoint": {
|
||||||
|
"commandMetadata": {
|
||||||
|
"webCommandMetadata": {
|
||||||
|
"url": "/live_chat/get_live_chat?continuation=0",
|
||||||
|
"rootVe": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"urlEndpoint": {
|
||||||
|
"url": "/live_chat/get_live_chat?continuation=0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
3104
tests/testdata/chatreplay.json
vendored
Normal file
3104
tests/testdata/chatreplay.json
vendored
Normal file
File diff suppressed because it is too large
Load Diff
24
tests/testdata/speed/speedtest_empty.json
vendored
Normal file
24
tests/testdata/speed/speedtest_empty.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"timing": {
|
||||||
|
"info": {
|
||||||
|
"st": 164
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"csn": "",
|
||||||
|
"response": {
|
||||||
|
"responseContext": {
|
||||||
|
},
|
||||||
|
"continuationContents": {
|
||||||
|
"liveChatContinuation": {
|
||||||
|
"continuations": [{
|
||||||
|
"timedContinuationData": {
|
||||||
|
"timeoutMs": 10000,
|
||||||
|
"continuation": "continuation"
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
188
tests/testdata/speed/speedtest_normal.json
vendored
Normal file
188
tests/testdata/speed/speedtest_normal.json
vendored
Normal file
@@ -0,0 +1,188 @@
|
|||||||
|
{
|
||||||
|
"timing": {
|
||||||
|
"info": {
|
||||||
|
"st": 164
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"csn": "",
|
||||||
|
"response": {
|
||||||
|
"responseContext": {
|
||||||
|
},
|
||||||
|
"continuationContents": {
|
||||||
|
"liveChatContinuation": {
|
||||||
|
"continuations": [{
|
||||||
|
"timedContinuationData": {
|
||||||
|
"timeoutMs": 10000,
|
||||||
|
"continuation": "continuation"
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
"actions": [{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatTextMessageRenderer": {
|
||||||
|
|
||||||
|
"timestampUsec": "1500000030000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
42
tests/testdata/speed/speedtest_undefined.json
vendored
Normal file
42
tests/testdata/speed/speedtest_undefined.json
vendored
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
{
|
||||||
|
"timing": {
|
||||||
|
"info": {
|
||||||
|
"st": 164
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"csn": "",
|
||||||
|
"response": {
|
||||||
|
"responseContext": {
|
||||||
|
},
|
||||||
|
"continuationContents": {
|
||||||
|
"liveChatContinuation": {
|
||||||
|
"continuations": [{
|
||||||
|
"timedContinuationData": {
|
||||||
|
"timeoutMs": 10000,
|
||||||
|
"continuation": "continuation"
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
"actions": [{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"liveChatPlaceholderItemRenderer": {
|
||||||
|
"id": "",
|
||||||
|
"timestampUsec": "1500000000000000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addChatItemAction": {
|
||||||
|
"item": {
|
||||||
|
"liveChatPlaceholderItemRenderer": {
|
||||||
|
"id": "",
|
||||||
|
"timestampUsec": "1500000030000000"
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user