新增输出节点

This commit is contained in:
2025-12-23 01:55:59 +08:00
parent bb57b14cb8
commit 13428ac552
2 changed files with 34 additions and 0 deletions

20
nodes/parse_save_urls.py Normal file
View File

@@ -0,0 +1,20 @@
def check_status(status_code: float, body: str):
'''
检查状态码和约定的返回值
'''
if status_code != 200:
raise Exception(f"注册任务失败,状态码:{status_code}")
if "code" not in body or body["code"] != 1:
raise Exception(f"注册任务失败,返回值:{body}")
def main(status_code: float, body: str):
try:
check_status(status_code, body)
except Exception as e:
raise e
urls_result = body["data"]
return {
"add_urls_result": urls_result
}