feat: B站爬虫搜索关键词实现

This commit is contained in:
Relakkes
2023-12-03 23:19:02 +08:00
parent 5aeee93fc5
commit a90b411e68
6 changed files with 303 additions and 17 deletions

View File

@@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-
# @Author : relakkes@gmail.com
# @Time : 2023/12/3 16:20
# @Desc :
from enum import Enum
class OrderType(Enum):
# 综合排序
DEFAULT = ""
# 最多点击
MOST_CLICK = "click"
# 最新发布
LAST_PUBLISH = "pubdate"
# 最多弹幕
MOST_DANMU = "dm"
# 最多收藏
MOST_MARK = "stow"