Optimization code

This commit is contained in:
NianBroken
2024-07-25 19:36:29 +08:00 Unverified
parent 9d4b723035
commit 6f499dc544
4 changed files with 23 additions and 1 deletions
+3
View File
@@ -1,10 +1,12 @@
import requests
import json
import re
from scripts.ad import advertise
def send_message(token, title, content):
url = f"https://push.showdoc.com.cn/server/api/push/{token}"
content = advertise() + content
pattern = re.compile(r"^.*教学班ID.*$\n?", re.MULTILINE)
content = re.sub(pattern, "", content).strip()
replacements = {
@@ -14,6 +16,7 @@ def send_message(token, title, content):
"未公布成绩的课程:": "<h1>未公布成绩的课程</h1>\n",
"异常的课程:": "<h1>异常的课程</h1>\n",
"工作流信息:": "<h1>工作流信息</h1>\n",
"Copyright © 2024 NianBroken. All rights reserved.": "Copyright © 2024 <a href='https://www.nianbroken.top/' target='_blank'>NianBroken</a>. All rights reserved.",
}
for old, new in replacements.items():
content = content.replace(old, new)