Divide download module

This commit is contained in:
taizan-hokuto
2020-02-02 00:38:22 +09:00
parent 04aedc82e8
commit f1d8393971
4 changed files with 122 additions and 105 deletions

9
pytchat/tool/block.py Normal file
View File

@@ -0,0 +1,9 @@
class Block:
def __init__(self, pos=0, first=0, last=0,
continuation='', chat_data=[]):
self.pos = pos
self.first = first
self.last = last
self.temp_last = 0
self.continuation = continuation
self.chat_data = chat_data