开播提醒推送的图片改为使用直播间封面 (#249)

*  为bilibili直播添加下播提醒,添加直播分区信息

🚸 开播提醒推送的图片改为使用直播间封面

* ♻️ 使用Enum

* 🐛 修复bilibili发送视频动态时不推送视频标题的问题

* 🎨 调整LiveAction的注释和jaccard函数代码位置

* 🚨 修改RawPost类型定义,优化bililive类型显示
This commit is contained in:
AzideCupric
2023-05-14 01:41:25 +08:00
committed by GitHub
parent 1b077792aa
commit 24b6d60d69
5 changed files with 228 additions and 87 deletions
+11
View File
@@ -98,3 +98,14 @@ if plugin_config.bison_filter_log:
if config.log_level is None
else config.log_level
)
def jaccard_text_similarity(str1: str, str2: str) -> float:
"""
计算两个字符串(基于字符)的
[Jaccard相似系数](https://zh.wikipedia.org/wiki/雅卡尔指数)
是否达到阈值
"""
set1 = set(str1)
set2 = set(str2)
return len(set1 & set2) / len(set1 | set2)