feat: B站评论API

This commit is contained in:
Relakkes
2023-12-04 23:16:02 +08:00
parent a790d72db9
commit 8f04943105
2 changed files with 43 additions and 21 deletions

View File

@@ -6,7 +6,7 @@
from enum import Enum
class OrderType(Enum):
class SearchOrderType(Enum):
# 综合排序
DEFAULT = ""
@@ -21,3 +21,14 @@ class OrderType(Enum):
# 最多收藏
MOST_MARK = "stow"
class CommentOrderType(Enum):
# 仅按热度
DEFAULT = 0
# 按热度+按时间
MIXED = 1
# 按时间
TIME = 2